-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (95 loc) · 2.47 KB
/
pyproject.toml
File metadata and controls
105 lines (95 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mefai-autotrade"
version = "1.0.0"
description = "Institutional-grade automated trading engine with 20+ strategies, ML integration, portfolio management, and multi-exchange execution"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.10"
authors = [
{name = "Mefai", email = "dev@mefai.io"},
]
keywords = [
"trading",
"algorithmic-trading",
"cryptocurrency",
"binance",
"autotrade",
"portfolio-management",
"risk-management",
"machine-learning",
"backtesting",
"quantitative-finance",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Typing :: Typed",
]
dependencies = [
"xgboost>=2.0.0",
"numpy>=1.24.0",
"pandas>=2.0.0",
"scikit-learn>=1.3.0",
"scipy>=1.11.0",
"torch>=2.0.0",
"hmmlearn>=0.3.0",
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"websockets>=12.0",
"aiohttp>=3.9.0",
"aiosqlite>=0.19.0",
"apscheduler>=3.10.0",
"pyyaml>=6.0",
"python-dotenv>=1.0.0",
"ccxt>=4.2.0",
"feedparser>=6.0.0",
"joblib>=1.3.0",
"pydantic>=2.5.0",
"python-telegram-bot>=21.0",
"discord-webhook>=1.3.0",
"prometheus-client>=0.20.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"black>=24.0.0",
"ruff>=0.2.0",
"mypy>=1.8.0",
]
[project.urls]
Homepage = "https://mefai.io"
Repository = "https://github.com/mefai-dev/mefai-autotrade"
Documentation = "https://mefai.io/docs/autotrade"
[project.scripts]
mefai-autotrade = "main:cli_entry"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.black]
line-length = 100
target-version = ["py310"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"