forked from Yelp/doloop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.17 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
try:
from setuptools import setup
# arguments that distutils doesn't understand
setuptools_kwargs = {
'provides': ['doloop'],
'test_suite': 'tests.suite.load_tests',
'tests_require': ['unittest2'],
}
except ImportError:
from distutils.core import setup
setuptools_kwargs = {}
import doloop
setup(
author='David Marin',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Database',
],
description='Task loop for keeping things updated',
license='Apache',
long_description=open('README.rst').read(),
name='doloop',
py_modules=['doloop'],
scripts=['bin/create-doloop-table'],
url='http://github.com/Yelp/doloop',
version=doloop.__version__,
**setuptools_kwargs
)