forked from heroku-python/django-postgrespool
-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
40 lines (38 loc) · 1.34 KB
/
setup.py
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
from setuptools import setup, find_packages
from django_postgrespool2 import __version__, __author__
required = [
"sqlalchemy>=1.1",
"django>=2.2",
]
setup(
name="django-postgrespool2",
version=__version__,
description="PostgreSQL connection pooling for Django.",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author=__author__,
author_email="malexey1984@gmail.com",
url="https://github.com/lcd1232/django-postgrespool2",
packages=find_packages(),
python_requires=">=3.6",
install_requires=required,
license="MIT",
classifiers=(
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Topic :: Database",
),
keywords=["postgresql", "django", "pool", "pgbouncer",]
)