-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
41 lines (33 loc) · 1.02 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
33
34
35
36
37
38
39
40
41
import codecs
from os.path import dirname, join, realpath
from setuptools import find_packages, setup
ROOT = realpath(dirname(__file__))
def read(path):
with codecs.open(join(ROOT, path), encoding="utf-8") as f:
return f.read()
version = __import__("synctool").__version__
setup(
name="django-synctool",
version=version,
url="https://github.com/prestontimmons/django-synctool",
description="Sync data between databases.",
long_description=read("README.rst"),
author="Preston Timmons",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
"Django>=1.7",
"mock",
"requests",
],
classifiers=[
"Framework :: Django",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
],
)