-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
94 lines (82 loc) · 2.68 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "noisepy-seis-io"
dynamic = ["version"]
license = {file = "LICENSE"}
readme = "README.md"
authors = [
{ email = "[email protected]", name = "Marine Denolle" },
{ email = "[email protected]", name = "Carlos Suarez" },
{ email = "[email protected]", name = "Ishika Khandelwal" },
{ email = "[email protected]", name = "Yiyu Ni"}
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
dependencies = [
"DateTimeRange>=2.0.0,<3.0.0",
"numpy>=1.22.0,<2.0.0",
"pandas>=1.5.3,<2.0.0",
"pyasdf>=0.7.5,<1.0.0",
"fsspec>=2023.4.0,<2024.0.0",
"s3fs==2023.4.0,<2024.0.0",
"zarr==2.14.2",
"pydantic==2.3.0",
"PyYAML==6.0",
"pydantic-yaml==1.0",
"psutil>=5.9.5,<6.0.0",
"tqdm",
"diskcache",
]
# On a mac, install optional dependencies with `pip install '.[dev]'` (include the single quotes)
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov", # Used to report total code coverage
"pre-commit", # Used to run checks before finalizing a git commit
"sphinx", # Used to automatically generate documentation
"sphinx-rtd-theme", # Used to render documentation
"sphinx-autoapi", # Used to automatically generate api documentation
"black", # Used for static linting of files
# if you add dependencies here while experimenting in a notebook and you
# want that notebook to render in your documentation, please add the
# dependencies to ./docs/requirements.txt as well.
"nbconvert", # Needed for pre-commit check to clear output from Python notebooks
"nbsphinx", # Used to integrate Python notebooks into Sphinx documentation
"ipython", # Also used in building notebooks into Sphinx
"matplotlib", # Used in sample notebook intro_notebook.ipynb
"numpy", # Used in sample notebook intro_notebook.ipynb
]
[project.urls]
Homepage = "https://github.com/noisepy/noisepy-io"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/noisepy/seis/io/_version.py"
[tool.hatch.version.raw-options]
local_scheme = "no-local-version"
[tool.hatch.build.targets.sdist]
include = [
"src/noisepy",
]
[tool.hatch.build.targets.wheel]
packages = ["src/noisepy"]
[tool.pytest.ini_options]
testpaths = [
"tests",
]
[tool.black]
line-length = 110
target-version = ["py39"]
[tool.isort]
profile = "black"
line_length = 110
[tool.coverage.run]
omit=["src/noisepy/seis/io/_version.py"]