-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.04 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
[build-system]
build-backend = "hatchling.build"
requires = [ "hatchling" ]
[project]
name = "power-rankings"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12,<3.13"
classifiers = [ "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.12" ]
dependencies = [
"click>=8.1.7",
"matplotlib>=3.9.2",
"numpy>=1.23.5,<2",
"pandas>=1.5.2,<2",
"pyquery>=0.13.2",
"seaborn>=0.12.1,<0.13",
"playwright>=1.47",
"cyclopts>=4.2",
"pyyaml>=6.0.2",
]
scripts.all-time = "power_rankings.all_time:cli"
scripts.power-rankings = "power_rankings.power_rankings:cli"
scripts.team-spotlight = "power_rankings.team_spotlight:cli"
scripts.team-season-rankings = "power_rankings.team_season_rankings:cli"
[dependency-groups]
dev = [
"black>=24.8",
"flake8>=7.1.1",
"ipdb>=0.13.13",
"ipython>=8.27",
"jupyter",
"pre-commit>=3.8",
"ruff",
"pytest>=8.3.3",
]
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100
[tool.pyright]
venvPath = "."
venv = ".venv"