-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (94 loc) · 2.68 KB
/
pyproject.toml
File metadata and controls
102 lines (94 loc) · 2.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "comicframes"
version = "0.1.0"
description = "🎨 The beginning of bringing comics to life through AI-powered animation - starting with robust OpenCV frame detection and evolving into neural network-based interpolation using RIFE, FILM, and YOLO models"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{name = "Comics Project"},
]
keywords = [
"comics",
"computer-vision",
"frame-detection",
"animation",
"ai",
"machine-learning",
"opencv",
"yolo",
"rife",
"film",
"huggingface",
"pdf-processing",
"frame-interpolation",
"speech-bubble-detection",
"character-recognition",
"comic-analysis",
"panel-extraction",
"manga",
"graphic-novel",
"visual-storytelling"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Video",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Environment :: Console",
"Natural Language :: English",
]
dependencies = [
"pymupdf>=1.23.0",
"numpy>=1.21.0",
"opencv-python>=4.5.0",
"pillow>=8.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"black>=21.0",
"isort>=5.0",
"flake8>=3.8",
]
[project.scripts]
comicframes-extract = "comicframes.cli:extract_frames_cli"
comicframes-pdf = "comicframes.cli:pdf_to_images_cli"
comicframes-pipeline = "comicframes.cli:pipeline_cli"
comicframes-cache = "comicframes.cli:cache_cli"
comicframes-models = "comicframes.cli:models_cli"
[project.urls]
Homepage = "https://github.com/pr1m8/comicframes"
Repository = "https://github.com/pr1m8/comicframes"
Issues = "https://github.com/pr1m8/comicframes/issues"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.hatch.build.targets.sdist]
include = [
"/src",
"/README.md",
"/pyproject.toml",
]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.isort]
profile = "black"
line_length = 88