Skip to content

Commit

Permalink
Add dnspython as a dependency
Browse files Browse the repository at this point in the history
dnspython is required for SCRAM authentication for mongo
  • Loading branch information
jlane93 committed Nov 20, 2019
1 parent b6993d5 commit 62a2b36
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
bumpversion>=0.5.0
dnspython>=1.16.0
Eve>=0.9.0
exrex>=0.10.5
Faker>=2.0.0
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ def read(filename: str) -> str:
long_description=read("README.md"),
long_description_content_type="text/markdown",
install_requires=[
"dnspython>=1.16.0",
"Eve>=0.9.0",
"exrex>=0.10.5",
"Faker>=2.0.0",
Expand All @@ -48,7 +49,8 @@ def read(filename: str) -> str:
"Jinja2>=2.10",
"jsonschema>=2.6.0,<3.0.0",
"pandas>=0.25.0",
"py-healthcheck>=1.9.0"
"py-healthcheck>=1.9.0",
"simplejson>=3.16.0"
],
python_requires=">=3.6",
setup_requires=["pytest-runner>=5.2"],
Expand Down

0 comments on commit 62a2b36

Please sign in to comment.