-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
99 lines (89 loc) · 4.04 KB
/
pyproject.toml
File metadata and controls
99 lines (89 loc) · 4.04 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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "stratevo"
version = "6.0.3"
description = "AI-native quantitative finance engine with genetic algorithm strategy evolution"
readme = "README.md"
license = "AGPL-3.0-only"
requires-python = ">=3.10"
authors = [{name = "NeuZhou", email = "[email protected]"}]
keywords = ["quantitative-finance", "trading", "backtesting", "mcp", "ai-agent", "crypto", "bitcoin", "genetic-algorithm", "ccxt", "algorithmic-trading", "paper-trading", "stock-screening", "factor-investing", "walk-forward", "evolution-strategy"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Financial and Insurance Industry",
"Topic :: Office/Business :: Financial :: Investment",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
dependencies = [
"aiohttp>=3.8.0",
"numpy>=1.21.0",
"pandas>=1.3.0",
"pyyaml>=6.0",
"requests>=2.28.0",
"scipy>=1.9.0",
]
[project.urls]
Homepage = "https://github.com/NeuZhou/stratevo"
Documentation = "https://github.com/NeuZhou/stratevo/tree/master/docs"
Repository = "https://github.com/NeuZhou/stratevo"
Issues = "https://github.com/NeuZhou/stratevo/issues"
[project.scripts]
stratevo = "stratevo.cli.main:main"
[project.optional-dependencies]
cn = ["akshare>=1.10.0"]
us = ["yfinance>=0.2.0"]
crypto = ["ccxt>=4.0.0"]
hmm = ["hmmlearn>=0.3.0"]
full = ["aiohttp", "websockets", "ccxt>=4.0.0", "akshare>=1.10.0", "yfinance>=0.2.0", "pymoo>=0.6.0", "hmmlearn>=0.3.0"]
ml = ["numpy", "scikit-learn"]
pareto = ["pymoo>=0.6.0"]
docs = ["mkdocs>=1.5", "mkdocs-material>=9.0"]
dev = ["pytest>=7.0", "pytest-asyncio>=0.21", "pytest-aiohttp>=1.0", "pytest-cov>=4.0", "ruff"]
[tool.setuptools]
packages = [
"stratevo", "stratevo.a2a", "stratevo.agents", "stratevo.ai_strategy",
"stratevo.alerts", "stratevo.analytics", "stratevo.api",
"stratevo.backtesting", "stratevo.cli", "stratevo.cli.commands", "stratevo.cn_scanner", "stratevo.crypto", "stratevo.dashboard",
"stratevo.data", "stratevo.data.demo", "stratevo.data.sinks", "stratevo.data.sources", "stratevo.defi",
"stratevo.deploy", "stratevo.derivatives", "stratevo.drl", "stratevo.events",
"stratevo.evolution", "stratevo.exchanges", "stratevo.execution", "stratevo.export",
"stratevo.fixed_income", "stratevo.indicators", "stratevo.journal", "stratevo.llm",
"stratevo.mcp", "stratevo.ml", "stratevo.notifications", "stratevo.optimization",
"stratevo.paper", "stratevo.paper_report", "stratevo.pipeline",
"stratevo.plugin_system", "stratevo.plugin_system.examples", "stratevo.plugins",
"stratevo.portfolio", "stratevo.reports", "stratevo.risk",
"stratevo.sandbox", "stratevo.screener", "stratevo.sentiment", "stratevo.simulation",
"stratevo.strategies", "stratevo.strategies.library", "stratevo.strategy",
"stratevo.ta", "stratevo.telegram_bot", "stratevo.trading", "stratevo.utils",
"stratevo.viz", "stratevo.watchlist", "stratevo.web",
"stratevo.factor_registry", "stratevo.factor_registry.builtin",
"stratevo.fitness_plugins", "stratevo.fitness_plugins.builtin",
"stratevo.datasource_plugins",
"agents", "strategies",
]
[tool.setuptools.package-data]
strategies = ["builtin/*.yaml"]
"stratevo.data.demo" = ["*.csv"]
[tool.pytest.ini_options]
asyncio_mode = "strict"
addopts = "-m 'not slow and not network'"
filterwarnings = [
"ignore:stratevo\\..* is deprecated:DeprecationWarning",
]
markers = [
"integration: marks tests that require network access (deselect with '-m \"not integration\"')",
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"network: marks tests that require network access (deselect with '-m \"not network\"')",
"evolution: marks evolution engine tests",
]
[tool.ruff]
line-length = 120
target-version = "py310"
[tool.ruff.lint]
ignore = ["E402"] # Module-level imports after print() for startup banner