forked from expyriment/expyriment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (43 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
49 lines (43 loc) · 1.23 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
[project]
authors = [
{ name = "Florian Krause", email = "florian@expyriment.org" },
{ name = "Oliver Lindemann", email = "oliver@expyriment.org" },
]
description = 'A Python library for cognitive and neuroscientific experiments'
license = { file = "COPYING.txt" }
name = "expyriment"
readme = "README.md"
requires-python = ">=3.6"
dynamic = ["version"]
keywords = [
"experiment control",
"open science",
"neuroscience",
"experimental psychology",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = ["pygame>=2.5,<3", "pyopengl>=3,<3.1.7"]
[project.optional-dependencies]
all = [
"numpy>=1.6,<2",
"pyserial>=3,<4",
"pyparallel>=0.2,<1",
"sounddevice>=0.3,<1",
"mediadecoder>=0.1,<1",
]
data_preprocessing = ["numpy>=1.6,<2"]
parallelport_linux = ["pyparallel>=0.2,<1"]
serialport = ["pyserial>=3,<4"]
video = ["sounddevice>=0.3,<1", "mediadecoder>=0.1,<1"]
[project.urls]
"Bug Tracker" = "https://github.com/expyriment/expyriment/issues"
"Documentation" = "http://docs.expyriment.org"
"Homepage" = 'http://www.expyriment.org'
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project.scripts]
expyriment = "expyriment.cli:main"