-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (70 loc) · 2.14 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
70
71
72
73
74
75
76
77
78
79
80
[project]
name = "pupil_labs_matching"
description = "Functionality for matching timeseries data."
authors = [{name = "Pupil Labs", email = "[email protected]"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10, <4.0"
keywords = []
dynamic = ["version"]
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pupil-labs-video",
"pandas>=2.2.3",
"protobuf>=5.28.3",
"pandas-stubs>=2.2.3.241009",
"numpy>=2.1.2",
]
[project.urls]
Homepage = "https://pupil-labs.github.io/pl-matching"
Documentation = "https://pupil-labs.github.io/pl-matching"
Repository = "https://github.com/pupil-labs/pl-matching"
Issues = "https://github.com/pupil-labs/pl-matching/issues"
[tool.uv]
dev-dependencies = [
"pytest>=8.2",
"pre-commit>=2.20.0",
"mypy>=0.991",
"deptry>=0.20.0",
"tox-uv>=1.11.3",
"pytest-cov>=4.0.0",
# docs
"markdown-callouts>=0.4",
"markdown-exec>=1.8",
"mkdocs>=1.6",
"mkdocs-coverage>=1.0",
"mkdocs-gen-files>=0.5",
"mkdocs-git-revision-date-localized-plugin>=1.2",
"mkdocs-literate-nav>=0.6",
"mkdocs-material>=9.5",
"mkdocs-minify-plugin>=0.8",
"mkdocstrings[python]>=0.25",
# YORE: EOL 3.10: Remove line.
"tomli>=2.0; python_version < '3.11'",
"pupil-labs-neon-recording",
]
[tool.uv.sources]
pupil-labs-video = { path = "/home/marc/pupil_labs/pl-video", editable = true }
pupil-labs-neon-recording = { path = "/home/marc/pupil_labs/pl-neon-recording", editable = true }
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.coverage.report]
skip_empty = true
[tool.coverage.run]
branch = true
source = ["pupil_labs"]
[tool.deptry.per_rule_ignores]
DEP001 = ["pupil_labs"]
DEP002 = ["protobuf", "pandas-stubs"]