forked from open-cogsci/OpenSesame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
62 lines (58 loc) · 1.71 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
[tool.poetry]
name = "opensesame-core"
version = "4.0.0a33"
description = "A graphical experiment builder for the social sciences"
authors = ["Sebastiaan Mathôt <[email protected]>"]
readme = "readme.md"
license = "COPYING"
packages = [
{include = "openexp"},
{include = "libopensesame"},
{include = "libqtopensesame"},
{include = "opensesame_extensions"},
{include = "opensesame_plugins"}
]
include = [
"libqtopensesame/resources/theme/default/Faba/index.theme",
"libqtopensesame/resources/theme/default/Faba/**/*.png",
"libqtopensesame/resources/theme/default/Faba/**/*.svg",
"libqtopensesame/resources/theme/default/MokaSesame/index.theme",
"libqtopensesame/resources/theme/default/MokaSesame/**/*.png",
"libqtopensesame/resources/theme/default/MokaSesame/**/*.svg",
"mime/opensesame.svg",
"mime/opensesame.desktop"
]
homepage = "https://osdoc.cogsci.nl"
repository = "https://github.com/open-cogsci/OpenSesame/"
[tool.poetry.dependencies]
python = ">= 3.7"
"pyqode.core" = ">= 4"
"pyqode.python" = ">= 4"
qdatamatrix = ">= 0.1.34"
python-pseudorandom = ">= 0.3.2"
python-qnotifications = ">= 2.0.6"
python-fileinspector = ">= 1.0.2"
PyYAML = "*"
webcolors = "*"
pillow = "*"
markdown = "*"
[tool.wheel2deb.dependencies]
python = ">= 3.7"
"pyqode-python" = ">= 4"
"pyqode-core" = ">= 4"
qdatamatrix = ">= 0.1.34"
pseudorandom = "*"
qnotifications = ">= 2.0.6"
fileinspector = ">= 1.0.2"
yaml = "*"
webcolors = "*"
pil = "*"
markdown = "*"
pyqt5 = "*"
"pyqt5.qtwebengine" = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
opensesame = 'libqtopensesame.__main__:opensesame'
opensesamerun = 'libqtopensesame.__main__:opensesamerun'