Skip to content

Commit

Permalink
Merge pull request #212 from spectacles-ci/hotfix/setup-py
Browse files Browse the repository at this point in the history
Update dependencies in setup.py
  • Loading branch information
joshtemple authored May 19, 2020
2 parents cd9c7a9 + 3b5810e commit 1c117c7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
19 changes: 11 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,22 @@
py_modules=["spectacles"],
packages=find_packages(exclude=["docs", "tests*", "scripts"]),
include_package_data=True,
install_requires=["requests", "PyYAML", "colorama", "backoff", "aiohttp"],
install_requires=["requests", "PyYAML", "colorama", "backoff", "analytics-python"],
tests_require=[
"black",
"mypy",
"pytest",
"pytest-cov",
"requests_mock",
"mypy",
"coverage",
"pytest-asyncio",
"asynctest",
"pytest-recording",
"pytest-randomly",
"flake8",
"pre-commit",
"vcrpy",
"jsonschema"
],
entry_points={"console_scripts": ["spectacles = spectacles.cli:main"]},
author="Dylan Baker, Josh Temple",
author_email="",
author="Spectacles",
author_email="[email protected]",
url="https://github.com/spectacles-ci/spectacles",
download_url="https://github.com/spectacles-ci/spectacles/tarball/" + __version__,
long_description=long_description,
Expand Down
2 changes: 1 addition & 1 deletion spectacles/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.0rc1"
__version__ = "0.2.0rc2"

0 comments on commit 1c117c7

Please sign in to comment.