Skip to content

Commit

Permalink
fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ergo committed Jun 17, 2018
1 parent d3092c6 commit c7a62dc
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@
__version__['minor'],
__version__['patch'])

test_deps = [
"coverage",
"pytest",
"pytest-cov",
"tox",
"mock"
]

setup(
name='ziggurat_foundations',
version=version,
Expand Down Expand Up @@ -51,7 +59,7 @@
"six"],
setup_requires=["pytest-runner"],
extras_require={
'test': ['coverage', 'pytest', 'pytest-cov', 'tox', 'mock'],
'test': test_deps,
'lint': ['black', 'pylint', 'rstcheck', 'flake8'],
}
)

0 comments on commit c7a62dc

Please sign in to comment.