-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (94 loc) · 2.58 KB
/
pyproject.toml
File metadata and controls
102 lines (94 loc) · 2.58 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[project]
name = "psychopy-docs"
dynamic = ["version"]
requires-python = ">=3.9, <3.12"
description = "PsychoPy provides easy, precise, flexible experiments in behavioural sciences"
readme ={file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Open Science Tools Ltd", email = "support@opensciencetools.org"},
]
maintainers = [
{name = "Open Science Tools Ltd", email = "support@opensciencetools.org"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
dependencies = [
"psychopy", # to inspect the API
# for doc building:
"sphinx",
"jinja2",
"sphinx-design",
"sphinx-copybutton",
"myst-parser",
"sphinxcontrib.svg2pdfconverter", # requires inkscape
"psychopy-sphinx-theme",
]
[project.optional-dependencies] # This is optional dependencies
tests = [
"pytest>=6.2.5",
"pytest-codecov",
"pytest-cov",
"pytest-asyncio",
"flake8",
"xmlschema",
]
plugins = [
"psychopy-cedrus",
"psychopy-legacy",
"psychopy-crs",
"psychopy-pixx",
"psychopy-bbtk",
"psychopy-labhackers",
"psychopy-iolabs",
"psychopy-brainproducts",
"psychopy-gammasci",
"psychopy-photoresearch",
"psychopy-minolta",
"psychopy-mri-emulator",
"psychopy-qmix",
"psychopy-sounddevice",
"psychopy-visionscience",
"psychopy-emotiv",
"psychopy-eyetracker-tobii",
"psychopy-eyetracker-pupil-labs",
"psychopy-eyetracker-gazepoint",
"psychopy-eyetracker-eyelogic",
"psychopy-eyetracker-sr-research",
"psychopy-monkeys",
"psychopy-bids",
"psychopy-face-api",
]
[project.urls]
Homepage = "https://www.psychopy.org/"
Download = "https://github.com/psychopy/psychopy/releases/"
[build-system]
requires = [
"pdm-backend",
"psychopy",
"distro; platform_system == \"Linux\"",
"tomlkit",
"packaging",
"six", # for configobj
"polib", # for compiling translation files (*.po)
"typing-extensions",
]
build-backend = "pdm.backend"
[tool.pdm.build]
includes = []
[tool.pdm.version]
source = "call"
getter = "psychopy.__init__:getVersion"
[tool.distutils.bdist_wheel]
universal = 1
[tool.psychopy-docs]
src = ["psychopy-docs"]