-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (40 loc) · 959 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (40 loc) · 959 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
47
48
49
50
[project]
name = "transformerpredictionmodel"
version = "0.1.0"
description = "Project to predict sports player performance outcomes using complex ML modeling"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"nba-api>=1.10.2",
"scikit-learn>=1.7.2",
"gdown",
"torch>=2.9.0",
]
[tool.poe.tasks]
# Python linting and formatting
lint = "ruff check ."
fix = "ruff check --fix ."
format = "ruff format ."
# YAML linting
lint-yaml = "yamllint ."
# Markdown linting
lint-markdown = "markdownlint-cli2 '**/*.md'"
# Testing
test = "pytest"
test-cov = "pytest --cov=. --cov-report=term-missing"
coverage-report = "pytest --cov=. --cov-report=html"
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["src", "tests"]
[tool.uv]
dev-dependencies = [
"yamlfix>=1.18.0",
]
[dependency-groups]
dev = [
"poethepoet>=0.37.0",
"pytest>=8.4.2",
"pytest-cov>=7.0.0",
"ruff>=0.13.3",
"yamllint>=1.37.1",
]