-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
48 lines (45 loc) · 966 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["pyneon"]
[project]
name = "pyneon"
version = "0.1.0"
description = "A Python library for reading, preprocessing and exporting Pupil Labs Neon data"
readme = "README.md"
authors = [
{ name = "Qian Chu", email = "[email protected]" },
{ name = "Jan-Gabriel Hartel", email = "[email protected]" },
{ name = "Alex Lepauvre", email = "[email protected]" }
]
requires-python = ">=3.10"
dependencies = [
"pandas",
"numpy",
"matplotlib",
"scipy",
"opencv-python",
"typeguard",
"requests",
"tqdm",
]
[project.optional-dependencies]
apriltags = [
"pupil-apriltags"
]
dev = [
"pytest",
"numpydoc",
"codespell",
"pre-commit",
]
doc = [
"ruff",
"jupyter",
"seaborn",
"sphinx",
"pydata-sphinx-theme",
"nbsphinx",
]
full = ["pyneon[apriltags,dev,doc]"]