Skip to content

Commit

Permalink
added backoff and ratelimit dependencies; refs #93; changed the semve…
Browse files Browse the repository at this point in the history
…r range notaion to a less ambiguous style
  • Loading branch information
jspaaks committed Feb 20, 2021
1 parent 604ed15 commit f3b6774
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"howfairis.cli",
"howfairis.exceptions",
"howfairis.mixins",
"howfairis.requesting",
"howfairis.workarounds"
],
include_package_data=True,
Expand All @@ -37,39 +38,41 @@
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.9"
],
test_suite="tests",
install_requires=[
"beautifulsoup4>=4",
"click>=7",
"colorama>=0",
"ruamel.yaml>=0.16",
"requests>=2",
"voluptuous>=0.11"
"backoff == 1.*",
"beautifulsoup4 == 4.*",
"click == 7.*",
"colorama == 0.*",
"ratelimit == 2.*",
"ruamel.yaml == 0.16.*",
"requests == 2.*",
"voluptuous == 0.11.*"
],
setup_requires=[
],
tests_require=[
],
extras_require={
"dev": [
"prospector[with_pyroma]",
"yapf",
"bumpversion",
"pytest",
"pytest-cov",
"prospector[with_pyroma]",
"pycodestyle",
"pytest-cov",
"pytest-runner",
"pytest",
"recommonmark",
"requests_mock",
"sphinx",
"sphinx_rtd_theme",
"recommonmark",
"sphinx-click",
"sphinx",
"yapf"
],
"publishing": [
"twine",
"wheel",
"wheel"
]
},
data_files=[]
Expand Down

0 comments on commit f3b6774

Please sign in to comment.