diff --git a/setup.py b/setup.py index dd3cb7a9..1eecd57d 100644 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ "howfairis.cli", "howfairis.exceptions", "howfairis.mixins", + "howfairis.requesting", "howfairis.workarounds" ], include_package_data=True, @@ -37,16 +38,18 @@ "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=[ ], @@ -54,22 +57,22 @@ ], 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=[]