Skip to content

Commit

Permalink
Ensure black is correctly installed for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Willison committed Jul 28, 2018
1 parent 3c50a36 commit 501618d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,17 @@ def get_long_description():
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Simon Willison",
version="0.1",
version="0.2",
license="Apache License, Version 2.0",
packages=find_packages(),
install_requires=["click==6.7"],
setup_requires=["pytest-runner"],
tests_require=["pytest==3.2.3", "black==18.6b4"],
extras_require={"test": ["pytest==3.6.0", "black==18.6b4"]},
entry_points="""
[console_scripts]
sqlite-utils=sqlite_utils.cli:cli
""",
tests_require=["sqlite-utils[test]"],
url="https://github.com/simonw/sqlite-utils",
classifiers=[
"Development Status :: 3 - Alpha",
Expand Down

0 comments on commit 501618d

Please sign in to comment.