setup: add dev dependencies

closes #21
This commit is contained in:
William Ballenthin
2020-06-26 18:59:23 -06:00
parent 26fef7c615
commit d1dd997b7b
2 changed files with 7 additions and 5 deletions

View File

@@ -21,8 +21,3 @@ create_hook() {
echo '\n#### Copying hooks into .git/hooks'
create_hook 'post-commit'
create_hook 'pre-push'
echo '\n#### Installing linter/test dependencies\n'
pip install pycodestyle pytest-sugar
pip install https://github.com/williballenthin/vivisect/zipball/master
python setup.py develop

View File

@@ -51,6 +51,13 @@ setuptools.setup(
},
include_package_data=True,
install_requires=requirements,
extras_require={
'dev': [
'pytest',
'pytest-sugar',
'pycodestyle',
]
},
zip_safe=False,
keywords='capa',
classifiers=[