-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (91 loc) · 2.52 KB
/
pyproject.toml
File metadata and controls
100 lines (91 loc) · 2.52 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
[project]
name = "psychopy-app"
dynamic = ["version"]
requires-python = ">=3.9, <3.12"
description = "The PsychoPy App is the wxPython application to support the PsychoPy lib but also see PsychoPy Studio"
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",
"websockets", # new in 2023.2 for session.py
# for the app
"wxPython >= 4.1.1",
"markdown-it-py",
"requests",
"future", # only to support legacy versions in useVersion
# supporting plugins
"setuptools",
# pavlovia connections
"python-gitlab",
"gitpython",
"cryptography", # for sshkeys
# psychoJS conversions
"astunparse",
"esprima",
"jedi >= 0.16",
"packaging>=24.0",
"beautifulsoup4",
]
[project.optional-dependencies] # This is optional dependencies
tests = [
"pytest>=6.2.5",
"pytest-codecov",
"pytest-cov",
"pytest-asyncio",
"flake8",
"xmlschema",
]
building = [
"bdist-mpkg>=0.5.0; platform_system == \"Darwin\"",
"py2app; platform_system == \"Darwin\"",
"dmgbuild; platform_system == \"Darwin\"",
"polib",
]
[project.urls]
Homepage = "https://www.psychopy.org/"
Download = "https://github.com/psychopy/psychopy/releases/"
[project.gui-scripts]
psychopy = "psychopy_app:main"
[build-system]
requires = [
"pdm-backend",
"psychopy", # to get version string
"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 = []
excludes = ["building/"]
#source-includes = ["tests/"]
[tool.pdm.version]
source = "call"
getter = "psychopy.__init__:getVersion"
[pytest]
minversion = "9.0"
addopts = ["-rP", "--import-mode=importlib"]
testpaths = [
"tests",
]
pythonpath = ["src"]