-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
177 lines (143 loc) · 3.54 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# --- Build system configuration
[build-system]
requires = [ "setuptools>=41", "setuptools-scm", ]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
[tool.setuptools]
include-package-data = true
[tool.setuptools_scm] # this empty section enables the tool
[tool.setuptools.packages.find]
where = ["src"]
# --- Project Metadata
[project]
name = "obsplus"
dynamic = ["version"] # version is fetched by setuptools-git-versioning
authors = [
{ name="Derrick Chambers", email="d-chambers@users.noreply.github.com" },
{ name="Shawn Boltz", email="sboltz@users.noreply.github.com" }
]
description = "An ObsPy exapanson pack"
readme = "README.rst"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Scientific/Engineering",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = ["geophysics", "Seismology"]
# --- Dependencies
dependencies = [
# TODO: Unpin numpy<2 when an obspy release which supports numpy 2 comes out.
"numpy>1.24.4, <2.0",
"obspy >= 1.4.0",
"pandas >= 1.0",
"progressbar2",
"pydantic >= 2.0, <3.0",
"scipy",
"tables",
"typing-extensions",
]
[project.optional-dependencies]
docs = [
"sphinx>=1.5.1",
"ipykernel",
"numpydoc",
"sphinx_autodoc_typehints",
"nbsphinx",
"sphinx-automodapi",
"jinja2",
"typer",
]
test = [
"pytest",
# coveralls currently requires coverage < 5.0
"coverage < 5.0",
"pytest-cov",
"coveralls",
"nbval",
"twine",
"pre-commit",
]
dev = ["obsplus[test]", "obsplus[docs]"]
# --- URLs for project
[project.urls]
"Bug Tracker" = "https://github.com/niosh-mining/obsplus/issues"
"Documentation" = "https://github.com/niosh-mining/obsplus"
"Homepage" = "https://github.com/niosh-mining/obsplus"
# --- Entry Points
[project.entry-points."obsplus.datasets"]
bingham_test = "obsplus.datasets.bingham_test"
crandall_test = "obsplus.datasets.crandall_test"
ta_test = "obsplus.datasets.ta_test"
default_test = "obsplus.datasets.default_test"
# --- Pytest config
[tool.pytest.ini_options]
markers = [
"requires_network: tests that require network access",
"dataset: tests that require a dataset to run"
]
filterwarnings = [
# Ignore hdf5 warnings from pytables, See pytables #1035
'ignore::Warning:tables:'
]
# --- Ruff configuration
[tool.ruff]
line-length = 88
# enable certain types of linting
lint.select = [
"E",
"F",
"UP",
"RUF",
"I001",
"D",
"FA",
"T",
"N",
"NPY",
"NPY201",
]
# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
"__init__.py"
]
# lowest python version supported
target-version = "py310"
lint.fixable = ["ALL"]
# List of codes to ignore
lint.ignore = ["D105", "D107", "D401", "D205", "D200", "D400"]
[tool.ruff.lint.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
# config for docstring parsing
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.ruff.format]
# Use `\n` line endings for all files
line-ending = "lf"