-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
33 lines (31 loc) · 975 Bytes
/
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
from setuptools import setup, find_packages
description="""
DB-API2 connection pool for Django (for postgresql, mysql and sqlite)
"""
setup(
name = "djorm-ext-pool",
version = '0.8.2',
url = 'https://github.com/djangonauts/djorm-ext-pool',
license = 'BSD',
platforms = ['OS Independent'],
description = description.strip(),
author = 'Andrey Antukh',
author_email = '[email protected]',
maintainer = 'Andrey Antukh',
maintainer_email = '[email protected]',
packages = find_packages(),
include_package_data = False,
install_requires = [
'sqlalchemy >= 1.3.3',
],
zip_safe = False,
classifiers = [
'Development Status :: 5 - Production/Stable',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
]
)