#!/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',
    ]
)
