-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
32 lines (30 loc) · 1.1 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
#!/usr/bin/env python
from setuptools import setup, find_packages
METADATA = dict(
name='django-easydump',
version='0.2.6',
#version=open('VERSION').read(),
author='Chris Priest',
author_email='[email protected]',
description='Easily load database snapshots across deployments',
long_description='go here to learn more: http://priestc.github.com/django-easydump/',
#long_description=open('README.md').read(),
url='http://priestc.github.com/django-easydump/',
keywords='django dump database',
install_requires=['django', 'python-dateutil', 'boto'],
include_package_data=True,
package_data={'': ['README.md', 'VERSION']},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Web Environment',
'Topic :: Internet',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
packages=find_packages(),
)
if __name__ == '__main__':
setup(**METADATA)