Skip to content

Commit

Permalink
v1.3.1 - add pymongo, pyyaml, requests to install_requires; fixes #5
Browse files Browse the repository at this point in the history
  • Loading branch information
clarketm committed Mar 22, 2020
1 parent 6fe2f1a commit 3e9bece
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,5 @@ endif
publish upload: test clean build check
twine upload dist/*

.PHONY: deploy
deploy: release publish
2 changes: 1 addition & 1 deletion s3recon/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.0"
__version__ = "1.3.1"
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
),
Expand Down

0 comments on commit 3e9bece

Please sign in to comment.