-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (34 loc) · 1.27 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
import setuptools
from distutils.core import setup
__version_info__ = (0, 0, 4)
__version__ = '.'.join([str(v) for v in __version_info__])
setup(
name = 'cassorm',
version = __version__,
author = 'John Wehr',
author_email = '[email protected]',
maintainer = 'John Wehr',
maintainer_email = '[email protected]',
description = 'Django ORM for use with Apache Cassandra',
url = 'https://github.com/wehriam/cassorm/',
download_url = 'https://github.com/wehriam/cassorm/tarball/master',
keywords = 'cassandra client db distributed thrift pycassa django',
packages = ['cassorm'],
py_modules = ['ez_setup'],
requires = ['pycassa'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)