-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (64 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
79 lines (64 loc) · 1.74 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
[project]
name = "PhotoFilmStrip"
description = "PhotoFilmStrip - Creates movies out of your pictures."
version = "4.2.1"
authors = [
{name = "Jens Göpfert", email = "info@photofilmstrip.org"}
]
readme = "README"
#license = {text = "GPL-2.0"}
#license = "GPL-2.0"
#license-files = ["LICENSE"]
requires-python = ">= 3.9"
[project.urls]
Homepage = "https://www.photofilmstrip.org"
#[project.scripts]
#photofilmstrip = "photofilmstrip.GUI:main"
#photofilmstrip-cli = "photofilmstrip.CLI:main"
[build-system]
requires = [
"setuptools>=77",
"wheel",
"python-gettext",
"sphinx",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["photofilmstrip*"]
namespaces = false
[tool.pytest.ini_options]
pythonpath = "."
testpaths = [
"tests"
]
[tool.poe]
envfile = ".env"
[tool.poe.tasks]
pfs-gui = "python photofilmstrip/GUI.py"
pfs-cli = "python photofilmstrip/CLI.py"
win-port = "python setup.py bdist_winport"
win-exe = "python setup.py bdist_win"
tests = "pytest"
[tool.poetry]
package-mode = false
[[tool.poetry.source]]
name = "azure_pylibs"
url = "https://pkgs.dev.azure.com/PhotoFilmStrip/_packaging/pylibs/pypi/simple/"
priority = "explicit"
[tool.poetry.dependencies]
python =">=3.11"
pillow = "11.3.0"
wxpython = ">=4.2.2"
# pfs_gi is a custom gstreamer-cerbero build with additional plugins
# - pygobject; gst-python; x265
# - enabled introspection for pango, json-glib, harfbuzz, gdk-pixbuf
pfs_gi = { version = "2.5", markers = "sys_platform == 'win32'", source = "azure_pylibs" }
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
cx_freeze = { version = "8.4.1", markers = "sys_platform == 'win32'" }
python-gettext = ">=5"
sphinx = ">=8"
pytest = ">=8"
pylint = ">=3"