-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
29 lines (27 loc) · 971 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
from setuptools import setup, find_packages
setup(
name='django-db-parti',
version='0.3.3',
packages=find_packages(),
url='https://github.com/maxtepkeev/django-db-parti',
license=open('LICENSE').read(),
author='Max Tepkeev',
author_email='[email protected]',
description='Fully automatic database table partitioning for Django',
long_description=open('README.rst').read() + '\n\n' +
open('CHANGELOG.rst').read(),
keywords='django,partition,database,table',
install_requires=['Django >= 1.4'],
zip_safe=False,
classifiers=[
'Framework :: Django',
'Development Status :: 4 - Beta',
'Topic :: Internet',
'Topic :: Database',
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
],
)