There be tests ! And a massive code reorg to support the tests, And pep8 and pylint...
[margebot.git] / setup.py
1 """
2 Setup.py
3 """
4 # pragma pylint: disable=invalid-name
5 from setuptools import setup
6
7 with open('requirements.txt') as f:
8 install_required = f.read().splitlines()
9
10 with open('test-requirements.txt') as f:
11 tests_required = f.read().splitlines()
12
13 setup(
14 name='Margebot',
15 version='1.0.0',
16 packages=['plugins', ],
17 license='GPLv3',
18 long_description=open('README.md').read(),
19 url='https://pwan.org/git/?p=margebot.git;a=summary',
20 author='JudeN',
21 author_email='margebot_spam@pwan.org',
22
23 install_requires=install_required,
24
25 setup_requires=['pytest-runner'],
26 tests_require=tests_required,
27 )