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
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
from setuptools import setup, find_packages
setup(
name='django-etcd-settings',
version='0.1.11',
description="A dynamic settings management solution for Django using ETCD",
long_description=io.open('README.rst', encoding='utf-8').read(),
author="Enrique Paz",
author_email='enrique.pazperez@kpn.com',
url='https://github.com/kpn-digital/django-etcd-settings',
install_requires=[
'Django>=1.7.5'
'python-etcd>=0.4.1',
'python-dateutil>=2.2',
'six>=1.10.0',
],
packages=find_packages(exclude=['tests*']),
tests_require=['tox'],
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
]
)
|