forked from bpaquet/cqlsh
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
32 lines (27 loc) · 1007 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
#!/usr/bin/env python
'''A Python-based command-line client for running simple CQL commands on a Cassandra cluster
cqlsh is a Python-based command-line tool, and the most direct way
to run simple CQL commonds on a Cassandra cluster. This is a simple
re-bundling of the open source tool that comes bundled with Cassandra
to allow for cqlsh to be installed and run inside of virtual
environments.'''
from distutils.core import setup
doclines = __doc__.split("\n")
setup(
name='cqlsh',
version='5.0.4',
description=doclines[0],
long_description='\n'.join(doclines[2:]),
keywords='python cql cassandra cqlsh',
maintainer='Spiro Sideris',
maintainer_email='spirosideris@gmail.com',
url='http://git-wip-us.apache.org/repos/asf/cassandra.git',
platforms=['any'],
license="http://www.apache.org/licenses/LICENSE-2.0",
install_requires=['cql', 'cassandra-driver'],
tests_require=['unittest2'],
packages=['cqlshlib'],
scripts = [
'cqlsh',
]
)