lock dependencies

This commit is contained in:
Saleh Mir
2022-02-22 14:53:59 +01:00
parent 0f2b07a553
commit 6e5daa90ff
3 changed files with 9 additions and 40 deletions

View File

@@ -1 +1 @@
__version__ = '0.33.1'
__version__ = '0.33.2'

View File

@@ -15,16 +15,16 @@ PyWavelets==1.2.0
quantstats==0.0.47
requests==2.26.0
scipy==1.8.0
statsmodels==0.13.1
statsmodels==0.13.2
TA-Lib==0.4.24
tabulate==0.8.9
timeloop==1.0.2
websocket-client==1.2.3
simplejson==3.16.0
jimplejson==1.0.0
aioredis==1.3.1
redis==4.1.4
fastapi==0.74.0
uvicorn==0.14.0
websockets==9.1.0
python-dotenv==0.19.0
python-dotenv==0.19.2
aiofiles==0.7.0

View File

@@ -1,44 +1,13 @@
from setuptools import setup, find_packages
# also change in version.py
VERSION = '0.33.1'
VERSION = '0.33.2'
DESCRIPTION = "A trading framework for cryptocurrencies"
REQUIRED_PACKAGES = [
'arrow',
'blinker',
'click',
'matplotlib',
'mplfinance',
'newtulipy',
'numpy',
'numpy_groupies',
'pandas',
'peewee',
'psycopg2-binary',
'pydash',
'pytest',
'PyWavelets',
'quantstats',
'requests',
'scipy',
'statsmodels',
'TA-Lib',
'tabulate',
'timeloop',
'websocket-client',
'simplejson',
'aioredis',
'redis',
'fastapi',
'uvicorn',
'websockets',
'python-dotenv',
'aiofiles'
]
with open("requirements.txt", "r", encoding="utf-8") as f:
REQUIRED_PACKAGES = f.read().splitlines()
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
LONG_DESCRIPTION = f.read()
setup(
name='jesse',
@@ -47,7 +16,7 @@ setup(
author_email="saleh@jesse.trade",
packages=find_packages(),
description=DESCRIPTION,
long_description=long_description,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://jesse.trade",
project_urls={