forked from EarthScope/mseedlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
60 lines (53 loc) · 1.73 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
[build-system]
requires = ["hatchling>=1.21.0"]
build-backend = "hatchling.build"
[project]
name = "mseedlib"
description = "A Python package for reading and writing miniSEED formatted data"
authors = [
{ name = "EarthScope Data Services", email = "software@earthscope.org" },
]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["seismology", "miniseed", "mseed", "data", "waveform", "seismic"]
license = { text = "Apache-2.0" }
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
"Operating System :: POSIX :: Other",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/EarthScope/mseedlib"
Issues = "https://github.com/EarthScope/mseedlib/issues"
[tool.hatch.version]
path = "src/mseedlib/__version__.py"
[tool.hatch.build]
exclude = [
"src/mseedlib/libmseed/test/*",
"src/mseedlib/libmseed/doc/*",
"src/mseedlib/libmseed/example/*",
]
artifacts = [
"src/mseedlib/libmseed.so",
"src/mseedlib/libmseed.dylib",
"src/mseedlib/libmseed.dll",
"src/mseedlib/libmseed.h",
]
[tool.hatch.build.targets.wheel.hooks.custom]
path = "hatch_build_libmseed.py"
[tool.hatch.build.targets.wheel]
exclude = ['src/mseedlib/libmseed']
[tool.pytest.ini_options]
pythonpath = ["src"]