-
Notifications
You must be signed in to change notification settings - Fork 51
/
pyproject.toml
43 lines (38 loc) · 1.24 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "tethys-platform"
description = "Primary Tethys Platform Django Site Project"
readme = "README.rst"
license = {file = "LICENSE"}
keywords = ["web app", "scientific", "geospatial"]
authors = [
{name = "Nathan Swain", email = "[email protected]"},
{name = "Scott Christensen", email="[email protected]"},
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dynamic = ["version"]
[project.urls]
homepage = "http://tethysplatform.org/"
documentation = "http://docs.tethysplatform.org/en/stable/"
repository = "https://github.com/tethysplatform/tethys"
[project.scripts]
tethys = "tethys_cli:tethys_command"
[project.optional-dependencies]
test = [
"requests_mock"
]
[tool.setuptools_scm]
write_to = "tethys_portal/_version.py"