-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.14 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
[project]
name = "nfl-market-value-analysis"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"duckdb>=0.9.0",
"matplotlib>=3.10.8",
"numpy>=2.4.2",
"pandas>=3.0.0",
"seaborn>=0.12.0",
"jupyter>=1.0.0",
"notebook>=7.0.0"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["src*"]
[tool.ruff]
line-length = 88
# Exclude entire directories
exclude = [
".venv",
".git",
"__pycache__",
"build",
"dist",
"dbt/target",
"dbt/logs",
"eda", # This excludes the entire eda directory
"eda/**/*.ipynb", # Also explicitly exclude notebooks
]
[tool.ruff.lint]
select = ["E", "F", "W", "C", "I", "D"]
ignore = []
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["E402", "F401", "D401"]
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"--cov=src",
"--cov-report=term",
"--cov-fail-under=80"
]