-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 1 KB
/
setup.py
File metadata and controls
29 lines (28 loc) · 1 KB
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
from setuptools import setup, find_packages
import tornetcd
setup(
name="tornetcd",
version=tornetcd.__version__,
description="async etcd(python-etcd) client for tornado",
long_description="async etcd client for tornado.",
keywords='python etcd async tornado',
author="mqingyn",
url="https://github.com/mqingyn/tornetcd",
license="BSD",
packages=find_packages(),
author_email="mqingyn@gmail.com",
requires=['tornado'],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
scripts=[],
install_requires=[
'tornado',
],
)