-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (58 loc) · 1.87 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (58 loc) · 1.87 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
[project]
name = "scriptycut"
dynamic = ["version"]
description = "Python based video editing tool with simplified syntax approach"
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
keywords = ["video", "audio", "ffmpeg", "video editor", "cutter", "video cutter"]
authors = [
{ name = "Adrian Sausenthaler", email = "scriptycut@sausenthaler.de" },
]
# https://pypi.org/classifiers/
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
# "Operating System :: MacOS :: MacOS X",
# "Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"License :: OSI Approved :: MIT License",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Editors",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Non-Linear Editor",
"Typing :: Typed"
]
dependencies = [
# "imageio>=2.16,<3.0",
# "numpy",
]
[project.urls]
Documentation = "https://github.com/sausix/scriptycut#readme"
Issues = "https://github.com/sausix/scriptycut/issues"
Source = "https://github.com/sausix/scriptycut"
[project.entry-points."scriptycut.clips"]
mrtooley_official_tools = "scriptycut.clips:Clips"
[tool.hatch.version]
path = "src/scriptycut/__meta__.py"
pattern = "__VERSION__ = \"(?P<version>[^\"]+)\""
[tool.hatch.metadata]
allow-direct-references = true
[project.scripts]
scriptycut = "scriptycut.cli:run_cli"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.flake8]
max-line-length = 120
[tool.ruff]
line-length = 120