freqtrade_origin/setup.py

125 lines
2.2 KiB
Python
Raw Normal View History

2017-09-28 21:26:56 +00:00
from setuptools import setup
2020-09-28 17:43:32 +00:00
# Requirements used for submodules
plot = ['plotly>=4.0']
hyperopt = [
'scipy',
'scikit-learn',
'scikit-optimize>=0.7.0',
'filelock',
2022-02-05 14:18:05 +00:00
]
2022-07-31 13:10:01 +00:00
freqai = [
'scikit-learn',
2023-05-02 06:11:31 +00:00
'joblib',
'catboost; platform_machine != "aarch64"',
2022-07-31 13:10:01 +00:00
'lightgbm',
2023-05-02 06:11:31 +00:00
'xgboost',
'tensorboard'
2022-10-05 15:20:40 +00:00
]
freqai_rl = [
'torch',
2023-05-02 06:16:12 +00:00
'gymnasium',
2022-10-05 15:20:40 +00:00
'stable-baselines3',
2023-05-02 06:16:12 +00:00
'sb3-contrib',
'tqdm'
2022-07-31 13:10:01 +00:00
]
hdf5 = [
'tables',
'blosc',
]
develop = [
'coveralls',
'mypy',
2023-05-02 06:09:38 +00:00
'ruff',
'pre-commit',
'pytest',
'pytest-asyncio',
'pytest-cov',
'pytest-mock',
'pytest-random-order',
2023-05-02 06:09:38 +00:00
'isort',
'time-machine',
'types-cachetools',
'types-filelock',
'types-requests',
'types-tabulate',
'types-python-dateutil'
]
2019-08-09 02:09:15 +00:00
jupyter = [
'jupyter',
'nbstripout',
'ipykernel',
'nbconvert',
2021-09-21 21:52:12 +00:00
]
2019-08-09 02:09:15 +00:00
all_extra = plot + develop + jupyter + hyperopt + hdf5 + freqai + freqai_rl
2017-09-28 21:26:56 +00:00
2021-05-27 12:00:13 +00:00
setup(
tests_require=[
'pytest',
'pytest-asyncio',
'pytest-cov',
'pytest-mock',
2021-09-21 21:52:12 +00:00
],
2021-05-27 12:00:13 +00:00
install_requires=[
# from requirements.txt
2023-05-11 18:51:33 +00:00
'ccxt>=3.0.0',
'SQLAlchemy>=2.0.6',
'python-telegram-bot>=20.1',
2023-05-15 04:25:06 +00:00
'arrow>=1.0.0',
2021-05-27 12:00:13 +00:00
'cachetools',
'requests',
'urllib3',
'jsonschema',
'TA-Lib',
2021-09-24 17:32:22 +00:00
'pandas-ta',
2021-05-27 12:00:13 +00:00
'technical',
'tabulate',
'pycoingecko',
'py_find_1st',
'python-rapidjson',
2022-04-27 11:13:11 +00:00
'orjson',
2021-05-27 12:00:13 +00:00
'sdnotify',
'colorama',
'jinja2',
'questionary',
'prompt-toolkit',
'numpy',
'pandas',
2022-09-30 11:47:26 +00:00
'joblib>=1.2.0',
2023-04-09 14:05:10 +00:00
'rich',
2022-09-27 11:06:13 +00:00
'pyarrow; platform_machine != "armv7l"',
2021-05-27 12:00:13 +00:00
'fastapi',
'pydantic>=1.8.0',
2021-05-27 12:00:13 +00:00
'uvicorn',
'psutil',
2021-05-27 12:00:13 +00:00
'pyjwt',
2021-09-21 21:52:12 +00:00
'aiofiles',
'schedule',
'websockets',
2023-05-02 06:02:52 +00:00
'janus',
'ast-comments',
'aiohttp',
'cryptography',
2023-06-01 18:10:57 +00:00
'httpx>=0.24.1',
2023-05-02 06:02:52 +00:00
'python-dateutil',
2023-05-02 17:28:09 +00:00
'packaging',
2021-05-27 12:00:13 +00:00
],
extras_require={
'dev': all_extra,
'plot': plot,
'jupyter': jupyter,
'hyperopt': hyperopt,
'hdf5': hdf5,
2022-07-31 13:10:01 +00:00
'freqai': freqai,
2022-10-05 15:20:40 +00:00
'freqai_rl': freqai_rl,
2021-05-27 12:00:13 +00:00
'all': all_extra,
},
)