Checkpoint commit (pylint support)
[vern.git] / setup.py
1 #!/usr/bin/env python
2 """
3 Setup.py file for the vern project
4 """
5
6 from distutils.core import setup
7 import setuptools #pylint: disable=unused-import
8
9 with open('requirements.txt') as fp:
10 INSTALL_REQUIRES = fp.read()
11
12 with open('test_requirements.txt') as fp:
13 TESTS_REQUIRE = fp.read()
14
15 setup(
16 name='vern',
17 version='1.0.0',
18 author='Jude N',
19 author_email='digest_auth_spam@pwan.org',
20 description='A proxy for responding to digest auth requests',
21 long_description='A proxy for responding to annoying digest auth requests',
22 url="https://pwan.org/git/?p=vern;a=summary",
23 packages=['vern'],
24 package_dir={'vern' : 'vern'},
25 install_requires=INSTALL_REQUIRES,
26 tests_require=TESTS_REQUIRE,
27 setup_requires=['pytest-runner', 'pytest-pylint'],
28 )