-
Notifications
You must be signed in to change notification settings - Fork 77
/
pyproject.toml
40 lines (36 loc) · 1.09 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
[tool.poetry]
name = "mnemosyne-proj"
version = "2.11.0.2"
description = "a free, open-source, spaced-repetition flashcard program that helps you learn as efficiently as possible."
authors = ["Peter Bienstman <[email protected]>"]
readme = "README.md"
packages = [{include = "mnemosyne"},
{include = "openSM2sync"}]
include = ["mnemosyne/pyqt_ui/ui_*", "makefile", "pixmaps/*",
"tests/*", "mnemosyne/pyqt_ui/makefile"]
exclude = ["mnemosyne/android", "mnemosyne/android_python",
"mnemosyne/embedded_in_C", "mnemosyne/UDP_server"]
[tool.poetry.dependencies]
python = "^3.10"
argon2-cffi = "^21.3.0"
cheroot = "^10.0.0"
cherrypy = "^18.8.0"
matplotlib = "^3.7.2"
webob = "^1.8.7"
sphinx = "^7.0.1"
pyqt6 = "^6.5.1"
pyqt6-webengine = "^6.5.0"
decorator = "^5.1.1"
gtts = "^2.3.2"
google-trans-new = "^1.1.9"
pytest = "^7.4.0"
pytest-timeout = "^2.1.0"
legacy-cgi = "^2.6"
[tool.poetry.scripts]
mnemosyne = 'mnemosyne.pyqt_ui:run'
[tool.poetry.build]
generate-setup-file = false
script = "poetry-build.py"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"