forked from gamunu/cassandra_snap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.3 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from cassandra_snap import __version__, __maintainer__, __email__
install_requires = [
'argparse',
'fabric',
'boto>=2.29.1',
'pyyaml'
]
setup(
name='cassandra_snap',
version=__version__,
author=__maintainer__,
author_email=__email__,
url='http://github.com/gamunu/cassandra_snap',
description='Cassandra snap is a tool to backup cassandra to Amazon S3.',
packages=find_packages(),
zip_safe=False,
install_requires=install_requires,
include_package_data=True,
entry_points={
'console_scripts': [
'cassandra-snapshotter = cassandra_snap.main:main',
'cassandra-snapshotter-agent = cassandra_snap.agent:main'
]
},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)