forked from riptano/ccm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (28 loc) · 978 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
28
29
30
31
32
33
#!/usr/bin/env python
from os.path import abspath, join, dirname
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='ccm',
version='2.0.2',
description='Cassandra Cluster Manager',
long_description=open(abspath(join(dirname(__file__), 'README.md'))).read(),
author='Sylvain Lebresne',
author_email='sylvain@datastax.com',
url='https://github.com/pcmanus/ccm',
packages=['ccmlib', 'ccmlib.cmds'],
scripts=['ccm'],
install_requires=['pyYaml', 'six >=1.4.1'],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
],
)