mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-21 19:14:19 +01:00
add wheel package for secp
This commit is contained in:
17
poetry.lock
generated
17
poetry.lock
generated
@@ -684,6 +684,17 @@ docs = ["Sphinx (>=3.4)", "sphinx-rtd-theme (>=0.5)"]
|
|||||||
optional = ["python-socks", "wsaccel"]
|
optional = ["python-socks", "wsaccel"]
|
||||||
test = ["websockets"]
|
test = ["websockets"]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "wheel"
|
||||||
|
version = "0.38.4"
|
||||||
|
description = "A built-package format for Python"
|
||||||
|
category = "main"
|
||||||
|
optional = false
|
||||||
|
python-versions = ">=3.7"
|
||||||
|
|
||||||
|
[package.extras]
|
||||||
|
test = ["pytest (>=3.0.0)"]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "win32-setctime"
|
name = "win32-setctime"
|
||||||
version = "1.1.0"
|
version = "1.1.0"
|
||||||
@@ -710,7 +721,7 @@ testing = ["flake8 (<5)", "func-timeout", "jaraco.functools", "jaraco.itertools"
|
|||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "1.1"
|
lock-version = "1.1"
|
||||||
python-versions = "^3.7"
|
python-versions = "^3.7"
|
||||||
content-hash = "a317c12d282ef30beb2d3ea515e501e78eccfa70cdddc3429ebaf7f743f959bd"
|
content-hash = "f7238d56229c2e957585fc22331529facc751262430698369fe5a00396344401"
|
||||||
|
|
||||||
[metadata.files]
|
[metadata.files]
|
||||||
anyio = [
|
anyio = [
|
||||||
@@ -1230,6 +1241,10 @@ websocket-client = [
|
|||||||
{file = "websocket-client-1.3.3.tar.gz", hash = "sha256:d58c5f284d6a9bf8379dab423259fe8f85b70d5fa5d2916d5791a84594b122b1"},
|
{file = "websocket-client-1.3.3.tar.gz", hash = "sha256:d58c5f284d6a9bf8379dab423259fe8f85b70d5fa5d2916d5791a84594b122b1"},
|
||||||
{file = "websocket_client-1.3.3-py3-none-any.whl", hash = "sha256:5d55652dc1d0b3c734f044337d929aaf83f4f9138816ec680c1aefefb4dc4877"},
|
{file = "websocket_client-1.3.3-py3-none-any.whl", hash = "sha256:5d55652dc1d0b3c734f044337d929aaf83f4f9138816ec680c1aefefb4dc4877"},
|
||||||
]
|
]
|
||||||
|
wheel = [
|
||||||
|
{file = "wheel-0.38.4-py3-none-any.whl", hash = "sha256:b60533f3f5d530e971d6737ca6d58681ee434818fab630c83a734bb10c083ce8"},
|
||||||
|
{file = "wheel-0.38.4.tar.gz", hash = "sha256:965f5259b566725405b05e7cf774052044b1ed30119b5d586b2703aafe8719ac"},
|
||||||
|
]
|
||||||
win32-setctime = [
|
win32-setctime = [
|
||||||
{file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"},
|
{file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"},
|
||||||
{file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"},
|
{file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"},
|
||||||
|
|||||||
@@ -28,6 +28,7 @@ cryptography = "^38.0.4"
|
|||||||
websocket-client = "1.3.3"
|
websocket-client = "1.3.3"
|
||||||
pycryptodomex = "^3.16.0"
|
pycryptodomex = "^3.16.0"
|
||||||
setuptools = "^65.6.3"
|
setuptools = "^65.6.3"
|
||||||
|
wheel = "^0.38.4"
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
[tool.poetry.dev-dependencies]
|
||||||
black = {version = "^22.8.0", allow-prereleases = true}
|
black = {version = "^22.8.0", allow-prereleases = true}
|
||||||
|
|||||||
@@ -43,5 +43,6 @@ typing-extensions==4.4.0 ; python_version >= "3.7" and python_version < "4.0"
|
|||||||
urllib3==1.26.13 ; python_version >= "3.7" and python_version < "4.0"
|
urllib3==1.26.13 ; python_version >= "3.7" and python_version < "4.0"
|
||||||
uvicorn==0.18.3 ; python_version >= "3.7" and python_version < "4.0"
|
uvicorn==0.18.3 ; python_version >= "3.7" and python_version < "4.0"
|
||||||
websocket-client==1.3.3 ; python_version >= "3.7" and python_version < "4.0"
|
websocket-client==1.3.3 ; python_version >= "3.7" and python_version < "4.0"
|
||||||
|
wheel==0.38.4 ; python_version >= "3.7" and python_version < "4.0"
|
||||||
win32-setctime==1.1.0 ; python_version >= "3.7" and python_version < "4.0" and sys_platform == "win32"
|
win32-setctime==1.1.0 ; python_version >= "3.7" and python_version < "4.0" and sys_platform == "win32"
|
||||||
zipp==3.11.0 ; python_version >= "3.7" and python_version < "3.8"
|
zipp==3.11.0 ; python_version >= "3.7" and python_version < "3.8"
|
||||||
|
|||||||
Reference in New Issue
Block a user