From 8e8719e3d71ba25dbf5510fd15fd322da2a9cc19 Mon Sep 17 00:00:00 2001 From: Davide Casale Date: Wed, 30 Nov 2022 18:25:50 +0100 Subject: [PATCH] Add bfxapi.rest subpackage to setup.py. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e6fa6e3..a4c8397 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from distutils.core import setup setup( name="bitfinex-api-py", version="3.0.0", - packages=[ "bfxapi", "bfxapi.websocket", "bfxapi.utils" ], + packages=[ "bfxapi", "bfxapi.websocket", "bfxapi.rest", "bfxapi.utils" ], url="https://github.com/bitfinexcom/bitfinex-api-py", license="OSI Approved :: Apache Software License", author="Bitfinex",