-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 857 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 857 Bytes
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
from setuptools import setup, find_packages
VERSION = '0.0.2'
setup(
name='django-parting',
version=VERSION,
author='Dan Fairs',
author_email='dan@fezconsulting.com',
license='BSD',
description='Tools to help manage large database tables',
install_requires=[
'Django',
'python-dateutil',
'django-dfk',
],
keywords='django partition database table',
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: BSD License"
],
packages=find_packages(exclude=['ez_setup']),
url='https://github.com/danfairs/django-parting',
namespace_packages=[],
include_package_data=True,
zip_safe=False,
)