Files

50 lines
1.1 KiB
TOML
Raw Permalink Normal View History

2023-10-11 09:49:06 +01:00
[project]
name = "aiomql"
2026-02-28 18:16:28 +01:00
version = "4.1.2"
2023-10-11 09:49:06 +01:00
readme = "README.md"
2025-08-24 21:01:36 +01:00
requires-python = ">=3.13"
2023-10-11 09:49:06 +01:00
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
2024-11-23 10:23:01 +01:00
2024-11-16 12:40:52 +01:00
keywords = ["MetaTrader5", "Asynchronous", "Algorithmic Trading", "Trading Bot", "Backtesting",
2024-12-01 11:47:42 +01:00
"Technical Analysis", "Forex", "Stocks", "Cryptocurrency", "Futures", "Options", "Crypto", "Algo Trading"]
2024-11-23 10:23:01 +01:00
2025-08-10 10:35:59 +01:00
dependencies = [
2026-02-21 16:53:12 +01:00
"metatrader5>=5.0.5640",
2025-08-10 18:36:08 +01:00
"mplfinance>=0.12.10b0",
2026-02-21 16:53:12 +01:00
"pandas>=3.0.1",
2025-08-10 10:35:59 +01:00
]
2024-11-23 10:23:01 +01:00
2023-10-11 09:49:06 +01:00
authors = [{name = "Ichinga Samuel", email = "ichingasamuel@gmail.com"}]
2024-11-23 10:23:01 +01:00
2024-05-05 00:08:57 +01:00
description = "Asynchronous MetaTrader5 library and Algorithmic Trading Framework"
2023-10-11 09:49:06 +01:00
[project.urls]
"Homepage" = "https://github.com/Ichinga-Samuel/aiomql"
2024-02-12 21:09:28 +01:00
"Bug Tracker" = "https://github.com/Ichinga-Samuel/aiomql/issues"
2025-08-10 10:35:59 +01:00
2026-02-21 07:43:33 +01:00
[project.optional-dependencies]
2026-02-21 16:53:12 +01:00
optional = [
2026-02-21 07:43:33 +01:00
"cython>=3.2.4",
"numba>=0.64.0",
"tqdm>=4.67.3",
]
2026-02-21 16:53:12 +01:00
talib = [
"ta-lib>=0.6.8",
]
all = ["aiomql[talib, optional]"]
2025-08-10 10:35:59 +01:00
[dependency-groups]
dev = [
"jupyter>=1.1.1",
"pandas-stubs>=3.0.0.260204",
2025-08-10 10:35:59 +01:00
"pytest>=8.4.1",
"pytest-asyncio>=1.3.0",
2025-08-10 10:35:59 +01:00
]