[Python-modules-commits] [python-django-etcd-settings] 03/14: Add setup file to avoid yet another Build-Depends on py-pkgversion.

Michael Fladischer fladi at moszumanska.debian.org
Wed Dec 14 10:25:27 UTC 2016


This is an automated email from the git hooks/post-receive script.

fladi pushed a commit to branch master
in repository python-django-etcd-settings.

commit 06f9af2d293e0ef3774c3e99983f951a548a1ee7
Author: Michael Fladischer <FladischerMichael at fladi.at>
Date:   Tue Dec 13 22:12:01 2016 +0100

    Add setup file to avoid yet another Build-Depends on py-pkgversion.
    
    py-pkgversion is not yet packaged for Debian.
---
 .gitignore |  1 -
 setup.py   | 36 ++++++++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index e9c84a9..1d75ac2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -170,4 +170,3 @@ Session.vim
 
 # Project files
 unittest.sqlite
-/setup.py
diff --git a/setup.py b/setup.py
new file mode 100755
index 0000000..4f83c3e
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,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 at 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',
+    ]
+)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-django-etcd-settings.git



More information about the Python-modules-commits mailing list