-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.32 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
44
45
46
47
48
49
[project]
name = "nwnsdk"
dynamic = ["version"]
authors = [{ name = "NieuweWarmteNu", email = "[email protected]" }]
description = "Nieuwe Warmte Nu - compute engine sdk python"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"python-dotenv==1.0.0",
"pika==1.3.2",
"pika-stubs==0.1.3",
"SQLAlchemy==2.0.19",
"sqlalchemy-stubs==0.4",
"psycopg2-binary==2.9.7",
]
[project.optional-dependencies]
dev = [
"setuptools-git-versioning<2",
"pip-tools",
"build",
"setuptools"
]
[project.urls]
"Homepage" = "https://github.com/pypa/sampleproject"
"Bug Tracker" = "https://github.com/pypa/sampleproject/issues"
[build-system]
requires = ["setuptools", "setuptools-git-versioning<2"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true