-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
executable file
·30 lines (26 loc) · 976 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
30
#!/usr/bin/env python
from distutils.core import setup
with open("README.rst") as file:
long_description = file.read()
with open("LICENSE") as file:
license = file.read()
setup(name="etcd-py",
version="0.0.2",
description="Client for Etcd",
long_description=long_description,
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="",
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=license,
packages=['etcd'],
)