forked from jrydberg/etcd-py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·28 lines (24 loc) · 991 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
#!/usr/bin/env python
from distutils.core import setup
def read(filename):
return open(filename).read()
setup(name="etcd-py",
version="0.0.5",
description="Client for Etcd",
long_description=read("README.rst"),
author="Kris Foster",
author_email="kris.foster@gmail.com",
maintainer="Kris Foster",
maintainer_email="kris.foster@gmail.com",
url="https://github.com/transitorykris/etcd-py",
download_url="https://github.com/transitorykris/etcd-py/archive/master.zip",
classifiers=("Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7"),
license=read("LICENSE"),
packages=['etcd'],
)