forked from Fashiolista/ec2cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (41 loc) · 1.13 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
42
43
44
#!/usr/bin/env python
from setuptools import setup, find_packages
from ec2cluster import __version__
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
]
install_requires = [
'mock>=1.0.1',
'python-dateutil>=2.1',
'unittest2>=0.5.1',
'boto>=2.6.0',
'dnspython>=1.10.0',
'python-crontab>=1.2',
'psycopg2>=2.4.5',
'argh>=0.23.1',
]
setup(
name='ec2cluster',
version=__version__,
author='Mike Ryan',
author_email='[email protected]',
license='BSD',
url='http://github.com/mikery/ec2cluster',
description='Tools to work with clustered applications (PostgreSQL, Redis) on EC2',
packages=find_packages(exclude=("tests",)),
zip_safe=False,
install_requires=install_requires,
test_suite='ec2cluster.tests',
include_package_data=True,
classifiers=CLASSIFIERS,
entry_points={
'console_scripts': [
'ec2cluster = ec2cluster.cli:main'
]
},
)