Skip to content

Commit

Permalink
Apply workaround for ansible-lint error.
Browse files Browse the repository at this point in the history
  • Loading branch information
felddy committed Oct 17, 2019
1 parent efda8d5 commit ca38016
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 @@ -68,7 +68,15 @@ def package_vars(version_file):
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
include_package_data=True,
install_requires=["docopt", "setuptools"],
extras_require={"test": ["pre-commit", "pytest", "pytest-cov", "coveralls"]},
extras_require={
"test": [
"pre-commit",
"pytest",
"pytest-cov",
"coveralls",
"virtualenv==16.3.0",
]
},
# Conveniently allows one to run the CLI tool as `example`
entry_points={"console_scripts": ["example = example.example:main"]},
)

0 comments on commit ca38016

Please sign in to comment.