-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.cfg
73 lines (69 loc) · 1.86 KB
/
setup.cfg
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
[metadata]
name = lsl_relay
description = Relay data from Pupil Labs Companion apps to LabStreamingLayer
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/pupil-labs/lsl-relay/
author = Pupil Labs GmbH
author_email = [email protected]
license = MIT
license_files = LICENSE
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
project_urls =
Documentation=https://lsl-relay.readthedocs.io/en/stable/
History=https://lsl-relay.readthedocs.io/en/latest/history.html
Pupil Labs Realtime Network API=https://github.com/pupil-labs/realtime-network-api
LabStreamingLayer=https://labstreaminglayer.readthedocs.io/
[options]
packages = find_namespace:
install_requires =
click>=7.0
pupil-labs-realtime-api>=1.2.1
pylsl>=1.12.2
rich
typing-extensions
importlib-metadata;python_version<"3.8"
python_requires = >=3.10
include_package_data = true
package_dir =
=src
[options.packages.find]
where = src
exclude =
build*
dist*
docs*
tests*
[options.entry_points]
console_scripts =
pupil_invisible_lsl_relay = pupil_labs.lsl_relay.cli:relay_setup_and_start
lsl_relay = pupil_labs.lsl_relay.cli:relay_setup_and_start
lsl_relay_time_alignment = pupil_labs.lsl_relay.xdf_cloud_time_sync:main
[options.extras_require]
docs =
furo
jaraco.packaging>=9
pandas
rst.linker>=1.9
scikit-learn
seaborn
sphinx
sphinx-toolbox
importlib-metadata;python_version<"3.8"
pupil_cloud_alignment =
numpy
pandas
pyxdf
scikit-learn
seaborn
testing =
pytest>=6
pytest-checkdocs>=2.4
pytest-cov
pytest-enabler>=1.3
pytest-mypy>=0.9.1;python_implementation != "PyPy"