-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
35 lines (32 loc) · 930 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
31
32
33
34
35
import envconsul
version = envconsul.__version__
readme = open('README.md').read()
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='envconsul',
version=version,
description="""Environment Variable and Settings Management via Consul""",
long_description="""TODO""",
author='Adam Cardenas',
author_email='[email protected]',
url='https://github.com/cevaris/python-envconsul',
packages=['envconsul',],
include_package_data=True,
install_requires=[
'consulate==0.2.0',
'tornado==4.1',
],
license="MIT",
zip_safe=False,
keywords='envconsul',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
],
)