-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (60 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (60 loc) · 1.63 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
[build-system]
requires = ["hatchling<1.27"]
build-backend = "hatchling.build"
[project]
name = "stock-analysis"
version = "5.0.0"
description = "Investor-ready research for global stocks, funds, markets, and portfolios."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "AdvancingTitans" }]
dependencies = [
"pypdf>=5,<7",
"requests>=2.31",
"xlrd>=2.0,<3",
]
[project.scripts]
stock-analysis = "stock_analysis.app:run"
stock-analysis-agent = "stock_analysis.agent.install:main"
[project.optional-dependencies]
dev = [
"pytest>=7",
"ruff>=0.4",
]
[tool.hatch.build.targets.wheel]
packages = ["src/stock_analysis"]
[tool.hatch.build.targets.wheel.force-include]
"skills/stock-analysis/config/lenses" = "stock_analysis/lens_config"
"agent-entrypoints/catalog.json" = "stock_analysis/agent/entrypoints/catalog.json"
"agent-entrypoints/schemas" = "stock_analysis/agent/entrypoints/schemas"
"codex-skills" = "stock_analysis/agent/entrypoints/codex-skills"
"codex-prompts" = "stock_analysis/agent/entrypoints/codex-prompts"
"claude-commands" = "stock_analysis/agent/entrypoints/claude-commands"
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/skills/stock-analysis",
"/schemas",
"/agent-entrypoints",
"/claude-commands",
"/codex-prompts",
"/codex-skills",
"/generic-skills",
"/scripts",
"/tests",
"/README.md",
"/README.zh-CN.md",
"/CHANGELOG.md",
"/LICENSE",
"/pyproject.toml",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"
[tool.ruff]
line-length = 110
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP"]
ignore = ["E501"]