Checkpoint commit (pylint support)
[vern.git] / setup.py
diff --git a/setup.py b/setup.py
new file mode 100644 (file)
index 0000000..f9aa462
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,28 @@
+#!/usr/bin/env python
+"""
+Setup.py file for the vern project
+"""
+
+from distutils.core import setup
+import setuptools #pylint: disable=unused-import
+
+with open('requirements.txt') as fp:
+    INSTALL_REQUIRES = fp.read()
+
+with open('test_requirements.txt') as fp:
+    TESTS_REQUIRE = fp.read()
+
+setup(
+    name='vern',
+    version='1.0.0',
+    author='Jude N',
+    author_email='digest_auth_spam@pwan.org',
+    description='A proxy for responding to digest auth requests',
+    long_description='A proxy for responding to annoying digest auth requests',
+    url="https://pwan.org/git/?p=vern;a=summary",
+    packages=['vern'],
+    package_dir={'vern' : 'vern'},
+    install_requires=INSTALL_REQUIRES,
+    tests_require=TESTS_REQUIRE,
+    setup_requires=['pytest-runner', 'pytest-pylint'],
+)