-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
40 lines (36 loc) · 1.12 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pyweed"
dynamic = ["version"]
authors = [{ name = "Adam Clark", email = "[email protected]" }]
description = "A GUI application for discovering and downloading seismic data"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy",
"basemap",
"matplotlib",
"obspy<1.4",
"pillow",
"pyqt5",
"pyproj",
]
keywords = ["FDSN", "EarthScope", "miniSEED", "earthquake", "seismic data"]
[project.scripts]
pyweed_build_launcher = "pyweed.build_launcher:build"
[project.gui-scripts]
pyweed = "pyweed.pyweed_launcher:launch"
[tool.setuptools.dynamic]
version = { attr = "pyweed.__version__" }