From 2b5438cf9cf3c5245d28eb3c552e2444a6697cf0 Mon Sep 17 00:00:00 2001 From: YameenMalik Date: Wed, 6 Sep 2023 21:06:28 +0500 Subject: [PATCH 1/2] added dependencies --- pyproject.toml | 36 +++++++++++++++++++++++++++++++++--- 1 file changed, 33 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3ad86cf..2c44e22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,9 +6,39 @@ readme = "README.md" requires-python = ">=3.8" keywords = ["bluefin", "exchange", "decentralized", "perpetuals", "blockchain"] dependencies = [ - 'requests ~= 2.28.1', - 'python-socketio ~= 5.7.2', - 'websocket-client ~= 1.5.1' + 'aiohttp ~= 3.8.5', + 'aiosignal ~= 1.3.1', + 'asn1crypto ~= 1.5.1', + 'async-timeout ~= 4.0.3', + 'attrs ~= 23.1.0', + 'bidict ~= 0.22.1', + 'bip-utils ~= 2.7.1', + 'cbor2 ~= 5.4.6', + 'cffi ~= 1.15.1', + 'charset-normalizer ~= 3.2.0', + 'coincurve ~= 17.0.0', + 'crcmod ~= 1.7', + 'ecdsa ~= 0.18.0', + 'ed25519-blake2b ~= 1.4', + 'frozenlist ~= 1.4.0', + 'gevent ~= 23.7.0', + 'greenlet ~= 2.0.2', + 'idna ~= 3.4', + 'multidict ~= 6.0.4', + 'netifaces ~= 0.10.6', + 'py-sr25519-bindings ~= 0.2.0', + 'pycparser ~= 2.21', + 'pycryptodome ~= 3.18.0', + 'PyNaCl ~= 1.5.0', + 'python-engineio ~= 4.6.0', + 'python-socketio ~= 5.8.0', + 'six ~= 1.16.0', + 'socketio ~= 0.2.1', + 'websocket ~= 0.2.1', + 'websocket-client ~= 1.5.1', + 'yarl ~= 1.9.2', + 'zope.event ~= 5.0', + 'zope.interface ~= 6.0' ] [project.urls] From 44c0e4f724f6f44c72a4ff64052ba54863dae240 Mon Sep 17 00:00:00 2001 From: YameenMalik Date: Wed, 6 Sep 2023 21:09:30 +0500 Subject: [PATCH 2/2] bumped version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 2c44e22..285f5aa 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "bluefin_v2_client" -version = "2.0.0" +version = "2.0.1" description = "Library to interact with Bluefin exchange protocol including its off-chain api-gateway and on-chain contracts" readme = "README.md" requires-python = ">=3.8"