-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
81 lines (70 loc) · 1.69 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
81
[project]
name = "ettk"
version = "0.0.1"
description = "ETTK: Eye-tracking Toolkit"
authors = [
{name = "Eduardo Davalos", email="eduardo.davalos.anaya@vanderbilt.edu"}
]
license = {file = "LICENSE.txt"}
readme = "README.md"
requires-python = ">3.10"
keywords = ["eye-tracking", "toolkit", "analysis", "computer vision"]
classifiers = [
"Programming Language :: Python :: 3.10"
]
dependencies = [
'PyYAML',
'opencv-python>=4.7.0',
'matplotlib',
'pandas',
'tqdm',
'numpy',
'imutils'
]
[project.optional-dependencies]
tg3 = [
'websockets', # g3pylib
"zeroconf",
"aiortsp @ git+https://github.com/m4reko/aiortsp@master",
"aiohttp",
]
yolo = [
'torch',
"ultralytics"
]
test = [
'pytest',
'pytest-repeat',
'pytest-lazy-fixture',
'pytest-order',
'auto-changelog',
'pre-commit'
]
docs = [
'sphinx',
'myst-parser',
'furo'
]
[project.urls]
homepath = "https://github.com/oele-isis-vanderbilt/ETTK"
documentation = "https://oele-isis-vanderbilt.github.io/ETTK/"
repository = "https://github.com/oele-isis-vanderbilt/ETTK"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["*"] # ["*"] by default
namespaces = true
# Reference:
# https://stackoverflow.com/questions/4673373/logging-within-pytest-tests
[tool.pytest.ini_options]
# Logging + CLI
log_cli = true
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s.%(msecs)03d [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
# Ignore warnings
filterwarnings = "ignore::DeprecationWarning"