-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.19 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.19 KB
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
"""
CQLSL
-----
CQL for Python without any additional abstraction layers.
Designed to be simple and fast tool for communication with Cassandra.
CQLSL is something between native Cassandra driver (which is really awesome!) and ORM.
[Installation](https://github.com/drudim/cqlsl#installation)
[Documentation](https://github.com/drudim/cqlsl#getting-started)
"""
from setuptools import setup
import cqlsl
setup(
name='cqlsl',
version=cqlsl.__version__,
url='https://github.com/drudim/cqlsl',
license='MIT',
author='Dmytro Popovych',
author_email='drudim.ua@gmail.com',
description='CQL for Python without any additional abstraction layers',
long_description=__doc__,
keywords=['cassandra', 'cql'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Topic :: Database :: Front-Ends",
"Operating System :: OS Independent",
],
packages=['cqlsl'],
include_package_data=True,
install_requires=['cassandra-driver >= 2.1.1'],
test_suite='tests',
)