-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (33 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
37 lines (33 loc) · 1.2 KB
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
[build-system]
build-backend = "mesonpy"
requires = ["meson-python>0.15.0", "numpy >= 1.25.0"]
[project]
name = "splitpy"
version = "0.2.0"
description = "Software for teleseismic shear-wave splitting analysis"
authors = [
{ name = "Pascal Audet", email = "pascal.audet@uottawa.ca" },
{ name = "Andrew Schaeffer", email = "andrew.schaeffer@NRCan-RNCan.gc.ca"}
]
maintainers = [
{ name = "Pascal Audet", email = "pascal.audet@uottawa.ca" },
{ name = "Andrew Schaeffer", email = "andrew.schaeffer@NRCan-RNCan.gc.ca"}
]
requires-python = ">=3.9"
readme = "README.md"
dependencies = ["numpy>=1.25", "obspy"]
classifiers = [
"Development Status :: 5 - Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: Physics",
]
[project.urls]
Homepage = "https://github.com/paudetseis/SplitPy"
Documentation = "https://paudetseis.github.io/SplitPy"
"Bug Tracker" = "https://github.com/paudetseis/SplitPy/issues"
[project.scripts]
split_calc_auto = "splitpy.scripts.split_calc_auto:main"
split_calc_manual = "splitpy.scripts.split_calc_manual:main"
split_average = "splitpy.scripts.split_average:main"