freqtrade_origin/setup.py

127 lines
2.3 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',
'ft-scikit-optimize>=0.9.2',
'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',
2023-06-17 14:14:48 +00:00
'datasieve>=0.1.5'
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',
'isort',
'mypy',
2023-05-02 06:09:38 +00:00
'pre-commit',
'pytest-asyncio',
'pytest-cov',
'pytest-mock',
'pytest-random-order',
'pytest',
'ruff',
2023-05-02 06:09:38 +00:00
'time-machine',
'types-cachetools',
'types-filelock',
'types-python-dateutil'
2023-05-02 06:09:38 +00:00
'types-requests',
'types-tabulate',
]
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
2024-01-17 18:47:16 +00:00
'ccxt>=4.2.15',
'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',
'httpx>=0.24.1',
2021-05-27 12:00:13 +00:00
'urllib3',
'jsonschema',
'numpy',
'pandas',
2021-05-27 12:00:13 +00:00
'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
'colorama',
'jinja2',
'questionary',
'prompt-toolkit',
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',
2023-08-18 08:19:13 +00:00
'pydantic>=2.2.0',
'pyjwt',
'websockets',
2021-05-27 12:00:13 +00:00
'uvicorn',
'psutil',
'schedule',
2023-05-02 06:02:52 +00:00
'janus',
'ast-comments',
'aiofiles',
2023-05-02 06:02:52 +00:00
'aiohttp',
'cryptography',
'sdnotify',
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,
},
url="https://github.com/freqtrade/freqtrade",
2021-05-27 12:00:13 +00:00
)