Commit 4bba8286 by Jörg Stucke

add pycodestyle to pytest + replaced deprecated dev deps syntax in setup.py

parent 91492bf1
[pytest] [pytest]
addopts = --cov=./ -v addopts = --pycodestyle --cov=./ -v
[pycodestyle]
ignore = E501,W503
select = E504
...@@ -9,10 +9,13 @@ setup( ...@@ -9,10 +9,13 @@ setup(
install_requires=[ install_requires=[
'bitmath' 'bitmath'
], ],
tests_require=[ extras_require={
'dev': [
'pytest', 'pytest',
'pytest-cov', 'pytest-pycodestyle',
], 'pytest-cov'
]
},
description='file operation helper functions', description='file operation helper functions',
author='Fraunhofer FKIE', author='Fraunhofer FKIE',
author_email='peter.weidenbach@fkie.fraunhofer.de', author_email='peter.weidenbach@fkie.fraunhofer.de',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment