Checkpoint commit / importlib-inspect approach
[salty_linter.git] / setup.py
1 #!/usr/bin/env python
2
3 from distutils.core import setup
4 import setuptools
5
6 with open('requirements.txt') as fp:
7 install_requires = fp.read()
8
9 with open('test_requirements.txt') as fp:
10 tests_require = fp.read()
11
12 setup(
13 name = 'salty_linter',
14 version = '1.0.0',
15 author = 'Jude N',
16 author_email = 'its_still_require_not_requires_matey@pwan.org',
17 description = 'A salt linter',
18 long_description = 'A salt linter that checks for common salt state/function/parameters combos',
19 url = "https://pwan.org/git/?p=salty_linter;a=summary",
20 packages = ['salty_linter'],
21 package_dir = {'salty_linter' : 'salty_linter'},
22
23 install_requires = install_requires,
24 tests_require = tests_require,
25
26 package_data = {'salty_linter': ['data/*.yaml']},
27 scripts = ['bin/salty-linter']
28 )