-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
66 lines (59 loc) · 1.52 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
[build-system]
requires = ["setuptools", "wheel", "setuptools_scm[toml]>=6.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[project]
name = "pyneon"
dynamic = ["version"]
description = "A Python library for reading, preprocessing and exporting Pupil Labs Neon data"
readme = "README.md"
authors = [
{ name = "Qian Chu", email = "qianchu99@gmail.com" },
{ name = "Jan-Gabriel Hartel", email = "jangabrielhartel@gmail.com" },
{ name = "Alex Lepauvre", email = "alex.lepauvre@gmail.com" },
{ name = "Lucia Melloni"}
]
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
]
dependencies = [
"pandas",
"matplotlib",
"scipy",
"opencv-python>=4.7",
"joblib",
"typeguard",
"requests",
"tqdm",
]
license = "MIT"
[project.optional-dependencies]
dev = ["pytest"]
doc = [
"seedir",
"ruff",
"isort",
"jupyter",
"sphinx",
"numpydoc",
"pydata-sphinx-theme",
"nbsphinx",
"myst-parser",
]
full = ["pyneon[dev,doc]"]
[project.urls]
Homepage = "https://ncc-brain.github.io/PyNeon/"
Issues = "https://github.com/ncc-brain/PyNeon/issues"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
fallback_version = "0.0.0"
[tool.pytest.ini_options]
addopts = "--code-highlight=no"