Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -1,30 +1,38 @@
[[source]]

verify_ssl = true
name = "pypi"
url = "https://pypi.python.org/simple"


Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Who added these blank lines?

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please see the answer here.

[packages]

mypy = "*"
pylint = "*"
requests = "*"
beautifulsoup4 = "*"
"beautifulsoup4" = "*"
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

unnecesary "". Can you confirm it was intentionally
Changed the - to "".

Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please see the answer here.

click = "*"
halo = "*"
ipython = "*"
ipdb = "*"
py = "*"
mock = "*"
responses = "*"
autopep8 = "*"
"autopep8" = "*"
twine = "*"
wheel = "*"
setuptools = "*"
pypandoc = "*"


[requires]

python_version = "3.6"


[dev-packages]

ipython = "*"
autopep8 = "*"
"autopep8" = "*"
pytest = "*"
prettyprinter = "*"
Loading