-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.68 KB
/
Copy pathpyproject.toml
File metadata and controls
63 lines (58 loc) · 1.68 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
[project]
name = "pyonfx"
version = "0.11.0"
description = "An easy way to create KFX (Karaoke Effects) and complex typesetting using the ASS format (Advanced Substation Alpha)."
authors = [
{ name = "Antonio Strippoli", email = "clarantonio98@gmail.com" },
]
license = "LGPL-3.0-or-later"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"numpy",
"pyquaternion",
"shapely",
"scipy",
"rpeasings",
"VideoTimestamps>=0.2",
"Pillow",
"tqdm",
"tabulate",
"pywin32; platform_system=='Windows'",
"pycairo; platform_system=='Linux' or platform_system=='Darwin'",
"PyGObject; platform_system=='Linux' or platform_system=='Darwin'",
]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
keywords = ["typesetting", "ass", "subtitle", "aegisub", "karaoke", "kfx", "advanced-substation-alpha", "karaoke-effect"]
[project.urls]
Documentation = "https://pyonfx.rtfd.io/"
Source = "https://github.com/CoffeeStraw/PyonFX/"
Tracker = "https://github.com/CoffeeStraw/PyonFX/issues/"
[project.optional-dependencies]
dev = [
"isort",
"black",
"pytest",
"pytest-check",
"sphinx>=5.0.0",
"sphinx_panels",
"sphinx_rtd_theme",
"sphinxcontrib-napoleon",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["pyonfx*"]
[tool.isort]
profile = "black"