chore: Update ordering of requirements in setup.py

This commit is contained in:
Matthias
2024-02-06 18:15:17 +01:00
committed by Joe Schr
parent 52c7105554
commit 51a4d25ae3

View File

@@ -35,21 +35,21 @@ hdf5 = [
develop = [ develop = [
'coveralls', 'coveralls',
'isort',
'mypy', 'mypy',
'ruff',
'pre-commit', 'pre-commit',
'pytest',
'pytest-asyncio', 'pytest-asyncio',
'pytest-cov', 'pytest-cov',
'pytest-mock', 'pytest-mock',
'pytest-random-order', 'pytest-random-order',
'isort', 'pytest',
'ruff',
'time-machine', 'time-machine',
'types-cachetools', 'types-cachetools',
'types-filelock', 'types-filelock',
'types-python-dateutil'
'types-requests', 'types-requests',
'types-tabulate', 'types-tabulate',
'types-python-dateutil'
] ]
jupyter = [ jupyter = [
@@ -76,8 +76,11 @@ setup(
'arrow>=1.0.0', 'arrow>=1.0.0',
'cachetools', 'cachetools',
'requests', 'requests',
'httpx>=0.24.1',
'urllib3', 'urllib3',
'jsonschema', 'jsonschema',
'numpy',
'pandas',
'TA-Lib', 'TA-Lib',
'pandas-ta', 'pandas-ta',
'technical', 'technical',
@@ -86,29 +89,26 @@ setup(
'py_find_1st', 'py_find_1st',
'python-rapidjson', 'python-rapidjson',
'orjson', 'orjson',
'sdnotify',
'colorama', 'colorama',
'jinja2', 'jinja2',
'questionary', 'questionary',
'prompt-toolkit', 'prompt-toolkit',
'numpy',
'pandas',
'joblib>=1.2.0', 'joblib>=1.2.0',
'rich', 'rich',
'pyarrow; platform_machine != "armv7l"', 'pyarrow; platform_machine != "armv7l"',
'fastapi', 'fastapi',
'pydantic>=2.2.0', 'pydantic>=2.2.0',
'pyjwt',
'websockets',
'uvicorn', 'uvicorn',
'psutil', 'psutil',
'pyjwt',
'aiofiles',
'schedule', 'schedule',
'websockets',
'janus', 'janus',
'ast-comments', 'ast-comments',
'aiofiles',
'aiohttp', 'aiohttp',
'cryptography', 'cryptography',
'httpx>=0.24.1', 'sdnotify',
'python-dateutil', 'python-dateutil',
'packaging', 'packaging',
], ],