-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
56 lines (51 loc) · 1.87 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
[build-system]
requires = ["setuptools>=40.8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "psychopy-bbtk"
version = "0.0.11"
description = "Extension package for adding support for BlackBoxToolkit devices to PsychoPy."
readme = "README.md"
requires-python = ">= 3.7"
license = {text = "GNU General Public License v3 (GPLv3)"}
authors = [
{ name = "Jon Peirce", email = "[email protected]" },
{ name = "Matthew Cutone", email = "[email protected]" },
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
urls.homepage = "https://github.com/psychopy/psychopy-bbtk"
urls.changelog = "https://github.com/psychopy/psychopy-bbtk/blob/main/CHANGELOG.txt"
urls.documentation = "https://pages.github.com/psychopy/psychopy-bbtk"
urls.repository = "https://github.com/psychopy/psychopy-bbtk"
[tool.setuptools.packages.find]
where = ["",]
[project.optional-dependencies]
# dependencies for building the docs
docs = [
"psychopy",
"sphinx",
"furo",
]
# dependencies for running the test suite
tests = [
"psychopy",
"pytest",
]
[project.entry-points."psychopy.experiment.components"]
TPadButtonBoxBackend = "psychopy_bbtk.components.tpad:TPadButtonBoxBackend"
[project.entry-points."psychopy.hardware.bbtk"]
TPadPhotodiodeGroup = "psychopy_bbtk.tpad:TPadPhotodiodeGroup"
TPadButtonGroup = "psychopy_bbtk.tpad:TPadButtonGroup"
TPadVoiceKey = "psychopy_bbtk.tpad:TPadVoiceKey"
TPad = "psychopy_bbtk.tpad:TPad"
BBTKForcePad = "psychopy_bbtk.forcePad:BBTKForcePad"