forked from psychopy/psychopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
87 lines (82 loc) · 2.1 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[bdist_wheel]
universal = 1
[metadata]
license_file = LICENSE
license = GNU GPLv3 (or more recent equivalent)
author = Jonathan Peirce
author_email = [email protected]
maintainer_email = [email protected]
url = http://www.psychopy.org/
download_url = https://github.com/psychopy/psychopy/releases/
description = Psychology experiment software in Python
long_description = file: README.md, docs/source/CHANGELOG.md
long_description_content_type="text/markdown",
classifiers =
Development Status :: 4 - Beta
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX :: Linux
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
python_requires =
>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*
install_requires =
requests[security]
numpy
scipy
matplotlib
pandas
pillow
pyglet
pygame
pyopengl
soundfile
sounddevice
python-bidi
arabic_reshaper
cffi
future
json_tricks
pyosf
xlrd
openpyxl
pyserial
pyyaml
gevent
msgpack-numpy
msgpack-python
psutil
tables
pyzmq
moviepy
opencv-python
python-gitlab
gitpython
astunparse
esprima
freetype-py
# Platform-specific dependencies.
pyparallel; platform_system == "Linux"
pyWinhook; platform_system == "Windows"
pyqmix >= 2018.12.13; platform_system == "Windows"
pyqt5; python_version >= "3"
wxPython != 4.0.2, != 4.0.3; platform_system != "Linux"
pypiwin32; platform_system == "Windows"
pyobjc-core; platform_system == "Darwin"
pyobjc-framework-Quartz; platform_system == "Darwin"
[options.entry_points]
gui_scripts =
psychopy = psychopy.app.psychopyApp:main
[versioneer]
VCS = git
style = pep440
versionfile_source = psychopy/_version.py
versionfile_build =
tag_prefix = ''
[tool:pytest]
markers =
needs_sound: requires sound hw, thus should not be excercised e.g. on travis-ci