forked from michaelchin/gwspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (34 loc) · 1.09 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gplates-ws-proxy"
dynamic = ["version"]
description = "GPlates Web Service Python client/proxy"
readme = "README.md"
authors = [{ name = "Michael Chin", email = "[email protected]" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["GPlates", "RESTful", "Web Service", "Plate Tectonics"]
dependencies = [
"python-dotenv",
"requests",
]
requires-python = ">=3.9"
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["gplates_ws_proxy.tests*"]
[tool.setuptools.package-data]
gplates_ws_proxy = ["examples/*.ipynb"]
[tool.setuptools.dynamic]
version = {attr = "gplates_ws_proxy.__version__"}
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/michaelchin/gplates-python-proxy"
[project.scripts]
gplates-ws-proxy = "gplates_ws_proxy.__main__:main"