-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
38 lines (34 loc) · 1.05 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "odp"
description = "Core Python library for SAEON Open Data Platform systems development."
authors = [
]
readme = "README.md"
license = { text = "AGPL-3.0-or-later" }
requires-python = "== 3.10.*"
dependencies = [
"authlib",
"ory-hydra-client == 1.11.8",
"pydantic[dotenv] < 2",
"redis",
"requests",
]
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",
]
dynamic = ["version"]
[project.urls]
source = "https://github.com/SAEON/odp-core"
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic]
version = { attr = "odp.version.VERSION" }