From ddc35b14238fa733bc62e4337ffcdb6a2b94a9e9 Mon Sep 17 00:00:00 2001 From: aoki-h-jp <113173839+aoki-h-jp@users.noreply.github.com> Date: Sun, 5 Nov 2023 18:38:10 +0900 Subject: [PATCH] Update setup.py --- setup.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 5b333b8..fd9b3e0 100644 --- a/setup.py +++ b/setup.py @@ -4,11 +4,10 @@ name="funding-rate-arbitrage", version="1.2.1", description="A framework to help you easily perform funding rate arbitrage on major centralized cryptocurrency " - "exchanges.", + "exchanges.", install_requires=["ccxt", "pandas", "rich", "matplotlib"], - packages=["funding_rate_arbitrage"], + packages=find_packages(include=["funding_rate_arbitrage*"], exclude=["img"]), author="aoki-h-jp", author_email="aoki.hirotaka.biz@gmail.com", license="MIT", - packages=find_packages(include=["frarb"], exclude=["img"]), )