-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
42 lines (33 loc) · 1.11 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
[project]
name = "catframes"
version = "2024.8.3"
description = "Concatenate frames."
keywords = ["concat", "images", "video", "webm", "mp4", "slideshow", "timelapse", "stop motion"]
readme = "README.md"
license = {file = "LICENSE.txt"}
requires-python = ">=3.7"
authors = [
{name = "Georgy Ustinov", email = "[email protected]" },
{name = "Bogdan Syrovatsky", email = "[email protected]" },
{name = "Evgeny Ockatiev", email = "[email protected]" }
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"License :: OSI Approved :: zlib/libpng License"
]
dependencies = [
"Pillow>=9.2.0"
]
[project.urls]
Homepage = "https://itustinov.ru/"
"Source code" = "https://github.com/georgy7/catframes"
Changelog = "https://github.com/georgy7/catframes/blob/main/CHANGELOG.md"
[project.scripts]
catframes = "catframes.catframes:main"
catmanager = "catframes.catmanager:main"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"