-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.54 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.4"
dependencies = [
"Django>=2.0",
"SQLAlchemy>=1.4.24",
"sqlparams>=4.0.0",
]
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>=2.0",
"JPype1>=1.3.0",
"SQLAlchemy>=1.4.24",
"cx-Oracle>=6.4.1",
"mysqlclient>=1.3.0",
"psycopg2>=2.8.6",
"pyodbc>=4.0.34",
"sqlparams>=3.0.0",
]
jdbc = ["JPype1>=1.3.0"]
mysql = ["mysqlclient>=1.3.0"]
odbc = ["pyodbc>=4.0.34"]
oracle = ["cx-Oracle>=6.4.1"]
postgresql = ["psycopg2>=2.8.6"]
psycopg2 = ["psycopg2>=2.8.6"]
psycopg3 = ["psycopg>=3"]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.dynamic]
version = { attr = "dj_db_conn_pool.__version__" }