-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.42 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
50
51
52
53
54
55
[project]
name = "django-db-connection-pool"
description = "Database connection pool component library for Django"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Altair Bow", email = "[email protected]" }]
keywords = ["django", "db", "database", "persistent", "connection", "pool", "pooling"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.0"
dependencies = [
"Django",
"SQLAlchemy",
"sqlparams",
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/altairbow/django-db-connection-pool"
repository = "https://github.com/altairbow/django-db-connection-pool"
[project.optional-dependencies]
all = [
"Django",
"SQLAlchemy",
"sqlparams",
"psycopg",
"mysqlclient",
"oracledb",
"pyodbc",
"JPype1",
]
postgresql = ["psycopg"]
psycopg2 = ["psycopg2"]
psycopg3 = ["psycopg"]
mysql = ["mysqlclient"]
oracle = ["oracledb"]
odbc = ["pyodbc"]
jdbc = ["JPype1"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "dj_db_conn_pool.__version__" }