-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving back to Pipenv to manage dependencies
Poetry breaks no-binary installations of the RSA library, which defeats the purpose of this library. See #148
- Loading branch information
1 parent
5c7696d
commit 6f90ad3
Showing
6 changed files
with
582 additions
and
1,068 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
[[source]] | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
name = "pypi" | ||
|
||
[packages] | ||
"pyasn1" = ">=0.1.3" | ||
"pysha3" = {version = "~=1.0, >=1.0",markers = "python_version < '3.6'"} | ||
|
||
[dev-packages] | ||
coveralls = "~=1.8, >=1.8" | ||
"Sphinx" = "~=2.1, >=2.1" | ||
"pathlib2" = {version = "~=2.3, >=2.3.4",markers = "python_version < '3.6'"} | ||
"pytest" = "~=5.0, >=5.0" | ||
"pytest-cov" = "~=2.7, >=2.7" | ||
"tox" = "~=3.13, >=3.13" | ||
"mypy" = "~=0.720, >=0.720" | ||
"flake8" = "~=3.7, >=3.7" | ||
|
||
[requires] | ||
python_version = "3.7" |
Oops, something went wrong.