-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
38 lines (35 loc) · 874 Bytes
/
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
from setuptools import setup
INSTALL_REQUIRES = (
'gevent>=1.3.0',
'thrift>=0.10.0',
'kazoo>=2.5.0',
'six>=1.13.0',
'requests>=2.0.0'
)
TESTS_REQUIRES = (
'responses>=0.10.9',
)
setup(
name='scales-rpc',
version='2.0.1',
author='Steve Niemitz',
author_email='[email protected]',
url='https://www.github.com/steveniemitz/scales',
description='A python RPC client stack',
summary='A generic python RPC client framework.',
license='MIT License',
packages=['scales',
'scales.http',
'scales.kafka',
'scales.loadbalancer',
'scales.mux',
'scales.pool',
'scales.redis',
'scales.thrift',
'scales.thrifthttp',
'scales.thriftmux'],
install_requires=INSTALL_REQUIRES,
extras_require={
'tests': INSTALL_REQUIRES + TESTS_REQUIRES
}
)