forked from spikeekips/serf-python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (22 loc) · 665 Bytes
/
setup.py
File metadata and controls
28 lines (22 loc) · 665 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
import sys
from setuptools import setup
_requires = [
'msgpack-python',
]
if sys.version_info < (2, 7, 0, ) :
_requires.append('ordereddict', )
setup(
name='serf-python',
version='0.2.2',
description='serf client for python',
long_description="""
For more details, please see https://github.com/spikeekips/serf-python .
""",
author='Spike^ekipS',
author_email='spikeekips@gmail.com',
url='https://github.com/spikeekips/serf-python',
license='License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
install_requires=tuple(_requires, ),
packages=('serf', ),
package_dir={'': 'src', },
)