-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (26 loc) · 856 Bytes
/
Copy pathpyproject.toml
File metadata and controls
30 lines (26 loc) · 856 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
[project]
name = "phase-trace"
version = "0.1.0"
description = "Trace rugby possessions with the mouse, get an event stream and a momentum chart"
requires-python = ">=3.11"
dependencies = [
"numpy",
"matplotlib",
"scipy",
"nicegui",
]
[project.optional-dependencies]
dev = ["pytest"]
# RADL is the published action-language schema phase-trace exports into. Kept
# optional because it is a sibling checkout rather than a PyPI release today:
# pip install -e ../RADL
# With it installed, every raw export also writes radl.csv and is validated
# against RADL's closed vocabularies (tracer/radl_export.py).
radl = ["radl"]
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["core", "translators", "sources", "tracer"]
[tool.setuptools.package-data]
translators = ["*.json"]