forked from tethysplatform/tethys
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.48 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (51 loc) · 1.48 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[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-files = ["LICENSE"]
keywords = ["web app", "scientific", "geospatial"]
authors = [
{name = "Nathan Swain", email = "nswain@aquaveo.com"},
{name = "Scott Christensen", email="ScottyChristensen@gmail.com"},
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"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"]
requires-python = ">= 3.10"
dependencies = [
"pyopenssl",
# core dependencies
"django>=3.2,<6",
"channels",
"daphne",
"requests",
"bcrypt",
# Gen CLI commands
"pyyaml",
"jinja2",
# django plugin dependencies
"django-bootstrap5",
"django-model-utils",
"django-guardian",
]
[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"
[tool.setuptools_scm]
write_to = "tethys_portal/_version.py"
local_scheme = "no-local-version"