-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (32 loc) · 978 Bytes
/
Copy pathsetup.py
File metadata and controls
35 lines (32 loc) · 978 Bytes
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
#!/usr/bin/env python
import os
import sys
from setuptools import setup
if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload -r internal')
sys.exit()
setup(
name = "cassandra_client",
version = "0.10",
description="python thrift client for cassandra",
long_description=open("README.md").read(),
author="yancl",
author_email="kmoving@gmail.com",
url='https://github.com/yancl/cassandra_client',
classifiers=[
'Programming Language :: Python',
],
platforms='Linux',
license='MIT License',
zip_safe=False,
install_requires=[
'distribute',
'thrift_client',
],
tests_require=[
'nose',
],
packages=[ 'cassandra_client', 'cassandra_client.protocol',
'cassandra_client.protocol.genpy',
'cassandra_client.protocol.genpy.cassandra']
)