-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
69 lines (63 loc) · 1.4 KB
/
pyproject.toml
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
61
62
63
64
65
66
67
68
69
[project]
name = "itscalledsoccer"
description = "Programmatically interact with the American Soccer Analysis API"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
authors = [
{ name = "American Soccer Analysis", email = "americansocceranalysis@gmail.com" },
]
keywords = [
"stats",
"soccer",
"api",
"football",
"american",
"machine learning",
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"requests>=2.31.0",
"CacheControl>=0.13.1",
"rapidfuzz>=3.2.0",
"pandas>=2.1.0",
]
version = "1.3.0"
[project.urls]
Repository = "https://github.com/American-Soccer-Analysis/itscalledsoccer"
[tool.uv]
dev-dependencies = [
"types-requests",
"pytest",
"pytest-cov",
"mypy",
"ruff",
"mkdocs",
"mkdocstrings[python]",
"mkdocs-material"
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.exclude-package-data]
itscalledsoccer = ["tests", "tests.*"]
[[tool.mypy.overrides]]
module = [
"cachecontrol",
"cachecontrol.heuristics",
"fuzzywuzzy",
"pandas",
"setuptools",
"rapidfuzz",
]
ignore_missing_imports = true
[tool.ruff.lint]
ignore = ["E501"]
extend-select = ["I"]