-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
58 lines (55 loc) · 1.32 KB
/
setup.cfg
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
[metadata]
name = thumbnails
version = attr: thumbnails.__version__
author = Artyom Vancyan
author_email = [email protected]
description = Video thumbnail generator for modern web video players such as Plyr, Videojs, Flowplayer, Fluid Player, etc.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/pysnippet/thumbnails
keywords =
vtt
json
plyr
video
fluid
player
videojs
thumbnail
generator
flowplayer
thumbnails
thumbnail-generator
license = Apache 2.0
license_file = LICENSE
platforms = unix, linux, osx, win32
classifiers =
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Multimedia :: Video
[options]
packages =
thumbnails
install_requires =
av>=11.0.0
click>=8.0.3
imageio-ffmpeg>=0.4.7
imageio>=2.23.0
pillow>=8.4.0
rich==13.0.0
python_requires = >=3.8
package_dir =
=src
zip_safe = no
[options.entry_points]
console_scripts =
thumbnails = thumbnails.__main__:main
[options.extras_require]
testing =
pytest>=6.0
tox>=3.24