-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
27 lines (25 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
27 lines (25 loc) · 843 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pgdbpool"
version = "1.0.1"
authors = [
{ name="Claus Prüfer", email="pruefer@webcodex.de" },
]
description = "A tiny database de-multiplexer primarily scoped for Web- / Application Server."
readme = "./README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Operating System :: OS Independent",
]
dependencies = [
"psycopg2"
]
[project.urls]
Homepage = "https://github.com/clauspruefer/python-dbpool"
Issues = "https://github.com/clauspruefer/python-dbpool/issues"
Documentation = "https://pythondocs.webcodex.de/pgdbpool"
Changelog = "https://github.com/clauspruefer/python-dbpool/CHANGELOG.md"