-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (75 loc) · 2.25 KB
/
Copy pathpyproject.toml
File metadata and controls
81 lines (75 loc) · 2.25 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
[project]
name = "stock-analysis-plugin"
version = "0.1.4"
description = "Hermes plugin for stock analysis, screening, and strategy backtesting across A/HK/US/JP/KR/TW markets"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = [
"hermes-agent",
"hermes-plugin",
"ai-agent",
"stock",
"stock-analysis",
"stock-market",
"stock-screener",
"backtest",
"backtesting",
"quantitative-finance",
"quantitative-trading",
"algorithmic-trading",
"technical-analysis",
"factor-investing",
"a-shares",
"hk-stocks",
"us-stocks",
"akshare",
"yfinance",
"tushare",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"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",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"akshare>=1.14.0",
"pandas>=2.0.0",
"numpy>=1.24.0",
"requests>=2.28.0",
"jinja2>=3.1.0",
"exchange-calendars>=4.5.0",
"pyyaml>=6.0",
]
[project.urls]
Homepage = "https://github.com/Weaxs/stock-analysis-plugin"
Repository = "https://github.com/Weaxs/stock-analysis-plugin"
Issues = "https://github.com/Weaxs/stock-analysis-plugin/issues"
[project.entry-points."hermes_agent.plugins"]
stock-analysis = "hermes"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["hermes", "tools"]
[tool.hatch.build.targets.wheel.force-include]
"skills" = "skills"
"templates" = "templates"
"schemas" = "schemas"
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
addopts = "-m 'not integration_network and not integration_llm'"
markers = [
"integration_network: real provider calls (akshare/yfinance/etc.) — needs network",
"integration_llm: real LLM calls (DeepSeek/Anthropic) — needs API key and network",
]