-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
61 lines (48 loc) · 1.42 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
59
60
61
[metadata]
name = sittagger
version = attr: sittagger.__version__
description = Image viewer with user-labels tag database
long_description = file: README.rst
keywords = image, photo, viewer, browser, database, tagging, tag, label, labelling, python
url = https://github.com/hydrargyrum/sit-tagger
license = WTFPL
author = Hg
author_email = dev@indigo.re
classifier =
Development Status :: 5 - Production/Stable
Environment :: X11 Applications :: Qt
Intended Audience :: End Users/Desktop
License :: Public Domain
Topic :: Desktop Environment :: File Managers
Topic :: Multimedia :: Graphics :: Viewers
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3 :: Only
[options]
zip_safe = 1
python_requires = >=3.4
install_requires =
PyQt6
pyxdg
vignette
packages = find:
# include_package_data seems required for considering MANIFEST.in
include_package_data = true
[options.entry_points]
console_scripts =
sit-tagger-cli=sittagger.cli:main
gui_scripts =
sit-tagger=sittagger.app:main
[options.data_files]
share/icons/hicolor/128x128/apps =
sittagger.png
share/applications =
sittagger.desktop
[bdist_wheel]
universal = 1
[flake8]
extend-ignore = W191