-
Notifications
You must be signed in to change notification settings - Fork 54
/
setup.cfg
63 lines (59 loc) · 1.93 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
62
63
[metadata]
name = udiskie
version = attr: udiskie.__version__
description = Removable disk automounter for udisks
url = https://github.com/coldfix/udiskie
long_description = file: README.rst, HACKING.rst, TRANSLATIONS.rst, CHANGES.rst
author = Byron Clark
author_email = [email protected]
maintainer = Thomas Gläßle
maintainer_email = [email protected]
license = MIT
license_file = COPYING
project_urls =
Bug Tracker = https://github.com/coldfix/udiskie/issues
Source Code = https://github.com/coldfix/udiskie
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Console
Environment :: X11 Applications :: GTK
Intended Audience :: Developers
Intended Audience :: End Users/Desktop
Operating System :: POSIX :: Linux
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
License :: OSI Approved :: MIT License
Topic :: Desktop Environment
Topic :: Software Development
Topic :: System :: Filesystems
Topic :: System :: Hardware
Topic :: Utilities
long_description_content_type = text/x-rst
[options]
packages =
udiskie
udiskie.icons
zip_safe = true
include_package_data = true
python_requires = >=3.5
install_requires =
PyYAML
docopt
importlib_resources;python_version<'3.7'
PyGObject
[options.extras_require]
password-cache =
keyutils==0.3
[options.entry_points]
console_scripts =
udiskie = udiskie.cli:Daemon.main
udiskie-mount = udiskie.cli:Mount.main
udiskie-umount = udiskie.cli:Umount.main
udiskie-info = udiskie.cli:Info.main
[flake8]
# codes: https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
# default: ignore = E121,E123,E126,E133,E226,E241,E242,E704,W503,W504,W505
ignore = E126,E221,E226,E241,E731,E741,W503,W504
max-line-length = 84
max-complexity = 14
exclude = docs,.git,build,__pycache__,dist,hit_models