forked from zlorf/django-synchro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 809 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='django-synchro',
description='Django app for database data synchronization.',
long_description=open('README.rst').read(),
version='0.5.1',
author='Jacek Tomaszewski',
author_email='[email protected]',
url='https://github.com/zlorf/django-synchro',
license='MIT',
install_requires=(
'django-dbsettings>=0.1',
'django>=1.4',
),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
packages=find_packages(),
include_package_data = True,
)