-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1017 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1017 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
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "bts"
version = "0.1.0"
description = "Beat the Streak v2 — PA-level MLB hit prediction"
requires-python = ">=3.12"
dependencies = [
"atproto",
"boto3",
"click>=8.1",
"oci>=2.170.0",
"pandas>=2.2",
"pyarrow>=15.0",
"pybaseball>=2.2.7",
"rich>=13.0",
]
[project.optional-dependencies]
model = [
"lightgbm>=4.6.0",
"scikit-learn>=1.8.0",
"catboost>=1.2.5",
]
[project.scripts]
bts = "bts.cli:cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-v"
[dependency-groups]
dev = [
"pytest>=8.0",
"moto[s3]",
]
[tool.uv]
# Project-level pin for the resolver's exclude-newer window. Using an absolute
# date (not "N days") so Mac and Hetzner produce byte-identical uv.lock files;
# a relative window would embed different wall-clock timestamps on each env.
# Update this line manually when refreshing the supply-chain-defense window.
exclude-newer = "2026-04-11"