-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
96 lines (77 loc) · 2.19 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
# --- 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="[email protected]" },
{ name="Shawn Boltz", email="[email protected]" }
]
description = "An ObsPy exapanson pack"
readme = "README.rst"
license = { file="LICENSE" }
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
]
keywords = ["geophysics", "Seismology"]
# --- Dependencies
dependencies = [
"numpy>=1.13.0",
"obspy >= 1.3.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"