-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (29 loc) · 752 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (29 loc) · 752 Bytes
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
[project]
name = "consumer-ls-book"
version = "0.1.0"
description = "Consumer L/S book - one demand scorecard + market-neutral tilt from four free-data readers"
requires-python = ">=3.11"
dependencies = [
"pandas>=2.2",
"numpy>=1.26",
"requests>=2.32",
"tenacity>=8.2",
"python-dotenv>=1.0",
"lxml>=5.0",
"yfinance>=0.2",
]
[dependency-groups]
dev = ["ruff>=0.6", "mypy>=1.10", "pytest>=8.0", "types-requests"]
[tool.uv]
package = false
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
disable_error_code = ["operator", "call-overload", "import-untyped"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q"