cosmicraysandearthquakes/pyproject.toml
root e5a812fa14 Initial commit: full analysis pipeline source code
Scripts 01-08 implement the complete cosmic-ray/earthquake correlation
analysis from data ingestion through out-of-sample validation and
combined timeseries sinusoid fitting.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-22 02:45:10 +02:00

36 lines
694 B
TOML

[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "crq"
version = "0.1.0"
description = "Cosmic-ray / earthquake correlation toolkit — Homola et al. 2023 replication"
requires-python = ">=3.11"
dependencies = [
"numpy>=1.26",
"pandas>=2.1",
"pyarrow>=14.0",
"polars>=0.19",
"scipy>=1.11",
"statsmodels>=0.14",
"joblib>=1.3",
"pyyaml>=6.0",
"requests>=2.31",
]
[project.optional-dependencies]
gpu = [
"cupy-cuda12x>=13.0",
]
dev = [
"pytest>=7.4",
"pytest-cov>=4.1",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"