-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 873 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 873 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
#!/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 = "thrift_client",
version = "0.10",
description="python thrift client supports failover",
long_description=open("README.md").read(),
author="yancl",
author_email="kmoving@gmail.com",
url='https://github.com/yancl/thrift_client',
classifiers=[
'Programming Language :: Python',
],
platforms='Linux',
license='MIT License',
zip_safe=False,
install_requires=[
'distribute',
'thrift',
],
tests_require=[
'nose',
],
packages=['thrift_client', 'thrift_client.client', 'thrift_client.client.connection']
)