-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
48 lines (43 loc) · 1.47 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
44
45
46
47
48
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from __future__ import unicode_literals
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
version = '0.2.2.dev0'
setup(
name='ripozo-cassandra',
version=version,
packages=find_packages(include=['ripozo_cassandra', 'ripozo_cassandra.*']),
url='',
license='',
author='Tim Martin',
author_email='[email protected]',
description=('Integrates cassandra/cqlengine with ripozo to'
' easily create cassandra backed Hypermedia/HATEOAS/REST apis'),
install_requires=[
'cassandra-driver',
'ripozo',
'six',
],
tests_require=[
'unittest2',
'mock'
],
test_suite='ripozo_cassandra_tests',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: Other/Proprietary License',
'Operating System :: OS Independent',
'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',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)