-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
31 lines (26 loc) · 954 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
#!/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='4.1.1',
description=doclines[0],
long_description='\n'.join(doclines[2:]),
keywords='python cql cassandra cqlsh',
maintainer='Andrew Mussey',
maintainer_email='admin@ajama.org',
url='https://github.com/amussey/cqlsh',
platforms=['any'],
license="http://www.apache.org/licenses/LICENSE-2.0",
install_requires=['cql', 'simplejson', 'unittest2'],
packages=['cqlshlib'],
scripts = [
'cqlsh',
]
)