-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (73 loc) · 1.33 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
[project]
name = "performance-tracker"
version = "0.1.0"
description = "Add your description here"
requires-python = ">=3.13"
dependencies = [
"httpx>=0.28.1",
"pandas>=2.3.3",
"pandas-stubs~=2.3.3",
"python-dotenv>=1.2.1",
"streamlit>=1.52.2",
"yfinance>=1.0",
"cachetools>=6.2.4",
"python-dotenv>=1.2.1",
"google-genai>=1.56.0",
"pydantic>=2.12.5",
"parameterized>=0.9.0",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[dependency-groups]
dev = [
"coverage>=7.13.2",
"coverage-badge>=1.1.2",
"pre-commit>=4.5.1",
"ruff>=0.14.10",
]
[tool.pyright]
include = ["src"]
typeCheckingMode = "basic"
pythonVersion = "3.13"
[tool.ruff]
line-length = 88
target-version = "py313"
[tool.ruff.lint]
ignore = [
"E501",
"ANN101",
"ANN102",
"ANN003",
"PLR0913"
]
select = [
"E",
"W",
"F",
"I",
"B",
"SIM",
"ANN",
"PLR",
"PLE",
"PLW",
"PLC",
"UP",
"N",
"PTH",
"PD"
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true
docstring-code-line-length = 72
[tool.coverage.run]
dynamic_context = "test_function"
[tool.coverage.html]
show_contexts = true