forked from psychopy/psychopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
114 lines (103 loc) · 3.03 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
[project]
name = "psychopy"
description = "Psychology experiment software in Python"
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.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", ]
requires-python = ">=3.6"
dependencies = [
"requests[security]",
"future",
"cryptography",
"pypi_search",
"numpy < 1.24.0",
"scipy",
"matplotlib",
"pandas",
"pillow",
"soundfile >= 0.11.0",
"python-bidi",
"arabic_reshaper",
"json_tricks",
"xlrd", "openpyxl",
"pyserial",
"pyyaml",
"gevent",
"msgpack",
"msgpack-numpy",
"psutil",
"tables",
"pyzmq",
"ujson",
"moviepy",
"opencv-python",
"python-gitlab",
"gitpython",
"astunparse",
"esprima",
"freetype-py",
"jedi >= 0.16",
"psychtoolbox",
"python-vlc == 3.0.11115; platform_system == \"Windows\"",
"python-vlc >= 3.0.12118; platform_system != \"Windows\"",
"javascripthon",
"pyglet == 1.4.11; platform_system == \"Windows\"",
"pyglet == 1.5.27; platform_system != \"Windows\"",
"questplus >= 2019.3; python_version >= \"3.6\"",
"imageio >= 2.5",
"imageio-ffmpeg",
"pyparallel; platform_system == \"Linux\"",
"pyWinhook; platform_system == \"Windows\"",
"pyqt5", "wxPython == 4.1.1; platform_system == \"Darwin\"",
"wxPython >= 4.1.1; platform_system != \"Darwin\"",
"pypiwin32; platform_system == \"Windows\"",
"pyobjc-core < 8.0; platform_system == \"Darwin\"",
"pyobjc-framework-Quartz < 8.0; platform_system == \"Darwin\"",
"pyobjc < 8.0; platform_system == \"Darwin\"",
"python-xlib; platform_system == \"Linux\"",
"distro; platform_system == \"Linux\"",
"websocket_client",
"markdown-it-py",
"ffpyplayer",
"tobii-research; python_version <= \"3.8\"",
"egi-pynetstation", ]
dynamic = ["version", ]
[[project.authors]]
name = "Open Science Tools Ltd"
email = "[email protected]"
[[project.maintainers]]
email = "[email protected]"
[project.license]
text = "GNU GPLv3 (or more recent equivalent)"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://www.psychopy.org/"
Download = "https://github.com/psychopy/psychopy/releases/"
[project.gui-scripts]
psychopy = "psychopy.app.psychopyApp:main"
[build-system]
requires = ["setuptools>=61.2", "distro; platform_system == \"Linux\"", ]
build-backend = "setuptools.build_meta"
[tool.setuptools]
license-files = ["LICENSE", ]
include-package-data = false
[tool.versioneer]
vcs = "git"
style = "pep440"
versionfile_source = "psychopy/_version.py"
versionfile_build = ""
tag_prefix = "''"
[tool.distutils.bdist_wheel]
universal = 1
[tool.psychopy]
src = ["psychopy"]