-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 1.06 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
[build-system]
build-backend = "mesonpy"
requires = ["meson-python>0.15.0", "numpy >= 1.25.0"]
[project]
name = "orientpy"
version = "0.2.2"
description = "Seismic station orientation tools"
authors = [
{ name = "Pascal Audet", email = "[email protected]" }
]
maintainers = [
{ name = "Pascal Audet", email = "[email protected]" }
]
requires-python = ">=3.9"
readme = "README.md"
dependencies = ["numpy>=1.25", "obspy", "geographiclib"]
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/nfsi-canada/OrientPy"
Documentation = "https://nfsi-canada.github.io/OrientPy"
"Bug Tracker" = "https://github.com/nfsi-canada/OrientPy/issues"
[project.scripts]
bng_calc = "orientpy.scripts.bng_calc:main"
bng_average = "orientpy.scripts.bng_average:main"
dl_calc = "orientpy.scripts.dl_calc:main"
dl_average = "orientpy.scripts.dl_average:main"