-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.03 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "django-db-geventpool"
dynamic = ["version"]
description = "Add a DB connection pool using gevent to django"
readme = "README.md"
license = "Apache-2.0"
authors = [
{ name = "Javier Cordero Martinez", email = "[email protected]" },
]
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = [
"django>=3.1",
]
[project.urls]
Homepage = "https://github.com/jneight/django-db-geventpool"
[tool.hatch.version]
path = "django_db_geventpool/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/django_db_geventpool",
]