-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
31 lines (30 loc) · 967 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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
setup(
name='django-db-pool',
version='0.0.10',
author=u'Greg McGuire',
author_email='[email protected]',
packages=find_packages(),
url='https://github.com/gmcguire/django-db-pool',
license='BSD licence, see LICENSE',
description='Basic database persistance / connection pooling for Django + ' + \
'Postgres.',
long_description=open('README.md').read(),
classifiers=[
'Topic :: Database',
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python',
],
zip_safe=False,
install_requires=[
"Django>=1.3,<1.6.99",
"psycopg2>=2.4.2",
],
)