forked from wfxiang08/ssdb.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 1.01 KB
/
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
"""
ssdb.py
-------
Ssdb Python Client Library.
https://github.com/hit9/ssdb.py
"""
from setuptools import setup
setup(
name='ssdb.py',
version='0.1.8',
author='hit9',
author_email='[email protected]',
description="Ssdb Python Client Library",
long_description=__doc__,
license='bsd2',
keywords=['ssdb', 'client', 'library'],
url='https://github.com/hit9/ssdb.py',
py_modules=['ssdb'],
install_requires=['spp>=0.0.7'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)