-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
129 lines (115 loc) · 3.56 KB
/
pyproject.toml
File metadata and controls
129 lines (115 loc) · 3.56 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
[tool.poetry]
name = "databallpy"
version = "0.7.3"
description = "A package for loading, preprocessing, vizualising and synchronizing soccere event and tracking data."
authors = [
"Alexander Oonk <alexanderoonk26@gmail.com>",
"Daan Grob <daaniogrob@gmail.com>",
]
maintainers = [
"Alexander Oonk <alexanderoonk26@gmail.com>",
]
license = "MIT"
readme = "README.md"
homepage = "https://pypi.org/project/databallpy/"
documentation = "https://github.com/Alek050/databallpy/tree/main/docs"
repository = "https://github.com/Alek050/databallpy"
keywords = ["soccer", "football", "tracking data", "event data"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering",
]
[tool.poetry.dependencies]
python = ">=3.10,<3.15"
numpy = [
{ version = ">=1.26.4,<2.3.0", python = ">=3.10,<3.14" },
{ version = ">=2.3.2,<3.0.0", python = ">=3.14" }
]
tqdm = "^4.64.1"
matplotlib = "^3.6.3"
requests = "^2.31"
scipy =[
{ version = ">=1.10,<2.0", python = ">=3.10,<3.14" },
{ version = ">=1.16.1,<2.0", python = ">=3.14,<4.0" }
]
chardet = "^5.2.0"
pandera = { version = "^0.29.0", extras = ["pandas"] }
pandas = ">=2.1,<3.0"
pyarrow = [
{ version = ">=19.0.0,<23.0.0", python = ">=3.10,<3.14" },
{ version = ">=23.0.0,<100.0.0", python = ">=3.14" }
]
kloppy = { version = ">=3.18.0", optional = true }
accessible-space = { version = ">=2.0.13", optional = true }
platformdirs = "^4.9.2"
[tool.poetry.extras]
kloppy = ["kloppy"]
accessible-space = ["accessible-space"]
[tool.poetry.group.developing]
optional = true
[tool.poetry.group.developing.dependencies]
pytest-cov = "^4.0.0"
jupyter = "^1.0.0"
ipython-genutils = "^0.2.0"
scikit-learn = "^1.3.2"
ruff = "^0.7.3"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx-autoapi = "^2.0.1"
sphinx-rtd-theme = "^1.1.1"
sphinx = "^7.2.6"
nbsphinx = "^0.9.3"
myst-parser = "^2.0.0"
jupyter-book = "^1.0.0"
ipykernel = "^6.29.5"
[tool.poetry.group.profiler.dependencies]
line-profiler = [
{ version = ">=4.1.0,<5.0.0", python = "<3.14" },
{ version = ">=5.0.1,<6.0.0", python = "=3.14"}
]
[tool.semantic_release]
version_variable = "pyproject.toml:version" # version location
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "poetry build" # build dists
dist_path = "dist/" # where to put dists
upload_to_release = true # auto-create GitHub release
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = true # patch release by default
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 89
indent-width = 4
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# pycodestyle
"E4",
"E7",
"E9",
# isort
"I",
# pep8-naming
"N",
]
fixable = ["ALL"]
unfixable = []
[tool.ruff.lint.per-file-ignores]
"__init__.py" = [
# Allow using star imports in __init__.py modules for giving easy access to
# all exports defined in a package
"F401", "F403", "F405",
]