-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 1 KB
/
Copy pathpyproject.toml
File metadata and controls
34 lines (32 loc) · 1 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
[project]
name = "finance-data"
version = "0.1.0"
description = "US stock investment research with AI-powered analysis and technical charts"
requires-python = ">=3.9"
dependencies = [
"anthropic>=0.40.0",
"openai>=1.0.0",
"google-genai>=1.0.0",
"yfinance>=0.2.40",
"beautifulsoup4>=4.14.2",
"requests>=2.32.5",
"selenium>=4.36.0",
"webdriver-manager>=4.0.2",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-mock>=3.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
# Put both the repo root and scripts/ on sys.path so tests can import either
# `scripts.analysis.*` (package-qualified) or `analysis.*` / the bare entry
# scripts (`generate_analysis`, ...) the same way the CLIs do at runtime.
pythonpath = [".", "scripts"]
markers = [
"unit: fast, fully offline unit tests",
"integration: tests that exercise multiple modules with network/SDK boundaries mocked",
"live: opt-in tests that hit real network/APIs (deselected by default)",
]
addopts = "-ra"