-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
56 lines (45 loc) · 1.21 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
[metadata]
name = vignette
version = attr: vignette.__version__
description = Library to create FreeDesktop-compatible thumbnails
long_description = file: description.txt
url = https://github.com/hydrargyrum/vignette
license = WTFPLv2
author = Hg
author_email = [email protected]
classifier =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: Public Domain
Topic :: Desktop Environment
Topic :: Multimedia :: Graphics
Topic :: Software Development :: Libraries :: Python Modules
Topic :: Utilities
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
keywords = freedesktop, xdg, image, thumbnail, thumbnails, cache
[options]
packages = find:
zip_safe = 1
python_requires= >=3.6
install_requires =
python-magic
tests_require = pytest
[options.entry_points]
console_scripts =
vignette=vignette:main
[options.extras_require]
Pillow = Pillow
PythonMagick = PythonMagick
[build_sphinx]
source-dir = docs
build-dir = docs/_build
all_files = 1
[bdist_wheel]
universal = 1
[flake8]
ignore = W191, E101, E501, E117, E126