diff --git a/Makefile b/Makefile index 01995ac..367ed72 100644 --- a/Makefile +++ b/Makefile @@ -52,3 +52,5 @@ endif publish upload: test clean build check twine upload dist/* +.PHONY: deploy +deploy: release publish diff --git a/s3recon/__init__.py b/s3recon/__init__.py index 67bc602..9c73af2 100644 --- a/s3recon/__init__.py +++ b/s3recon/__init__.py @@ -1 +1 @@ -__version__ = "1.3.0" +__version__ = "1.3.1" diff --git a/setup.py b/setup.py index 6c1e487..554d61c 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ def open_local(paths, mode="r", encoding="utf8"): with open_local(["README.md"]) as f: long_description = f.read() -install_requires = ["mergedeep>=1.0"] +install_requires = ["mergedeep>=1.1", "requests>=2.23", "pymongo>=3.10", "pyyaml>=5.3"] setuptools.setup( name="s3recon", @@ -34,6 +34,7 @@ def open_local(paths, mode="r", encoding="utf8"): "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", ),