-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 1005 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
long_desc=open('README.rst','r').read()
setup(name="slacker-python",
version="0.4.1",
author="Sun Ning",
author_email="sunng@about.me",
description="python client of slacker RPC",
long_description=long_desc,
url="http://github.com/sunng87/slacker-python",
license='mit',
packages=['slacker'],
package_data={'': ['README.rst']},
install_requires=['pyclj==0.2.1',
'gevent==23.9.1',
'kazoo==2.2.1'],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Operating System :: OS Independent']
)