-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
36 lines (33 loc) · 976 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "odp-ui"
version = "3.0.0"
description = "User interface library for Python-based ODP web applications."
authors = [
{ name = "South African Environmental Observation Network", email = "[email protected]" },
]
readme = "README.md"
license = { text = "AGPL-3.0-or-later" }
requires-python = "== 3.10.*"
dependencies = [
"authlib",
"flask < 3",
"flask-login",
"redis",
"werkzeug < 3",
"wtforms",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
source = "https://github.com/SAEON/odp-ui"
[tool.setuptools]
packages = ["odp"]