-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 1.02 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
[project]
name = "static-ghost"
version = "0.4.2"
description = "Remove static watermarks from videos using LaMa inpainting"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [
{name = "redredchen01"},
]
keywords = ["video", "watermark", "removal", "inpainting", "lama", "ffmpeg", "iopaint"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Video",
]
dependencies = [
"opencv-python-headless>=4.8",
"numpy>=1.26",
"Pillow>=10.0",
]
[project.urls]
Homepage = "https://github.com/redredchen01/static-ghost"
Repository = "https://github.com/redredchen01/static-ghost"
Issues = "https://github.com/redredchen01/static-ghost/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
]
[project.scripts]
static-ghost = "static_ghost.cli:main"
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"