-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.cfg
More file actions
99 lines (91 loc) · 3.73 KB
/
setup.cfg
File metadata and controls
99 lines (91 loc) · 3.73 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
[metadata]
name = colcon-notification
version = attr: colcon_notification.__version__
url = https://colcon.readthedocs.io
project_urls =
Changelog = https://github.com/colcon/colcon-notification/milestones?direction=desc&sort=due_date&state=closed
GitHub = https://github.com/colcon/colcon-notification/
author = Dirk Thomas
author_email = web@dirk-thomas.net
maintainer = Dirk Thomas
maintainer_email = web@dirk-thomas.net
classifiers =
Development Status :: 3 - Alpha
Environment :: Plugins
Intended Audience :: Developers
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python
Topic :: Software Development :: Build Tools
license = Apache-2.0
description = Extension for colcon to provide status notifications.
long_description = file: README.rst
keywords = colcon
[options]
python_requires = >=3.6
install_requires =
colcon-core>=0.3.7
notify2; sys_platform == 'linux'
pywin32; sys_platform == 'win32'
packages = find:
zip_safe = false
[options.extras_require]
test =
flake8>=3.6.0
flake8-blind-except
flake8-builtins
flake8-class-newline
flake8-comprehensions
flake8-deprecated
flake8-docstrings
flake8-import-order
flake8-quotes
pep8-naming
pylint
pytest
pytest-cov
scspell3k>=2.2
[options.data_files]
# distutils replaces dashes in keys with underscores
share/colcon_notification/colcon_terminal_notifier.app/Contents =
colcon_terminal_notifier.app/Contents/Info.plist
colcon_terminal_notifier.app/Contents/PkgInfo
share/colcon_notification/colcon_terminal_notifier.app/Contents/MacOS =
colcon_terminal_notifier.app/Contents/MacOS/colcon_terminal_notifier
share/colcon_notification/colcon_terminal_notifier.app/Contents/Resources =
colcon_terminal_notifier.app/Contents/Resources/colcon.icns
share/colcon_notification/colcon_terminal_notifier.app/Contents/Resources/en.lproj =
colcon_terminal_notifier.app/Contents/Resources/en.lproj/Credits.rtf
colcon_terminal_notifier.app/Contents/Resources/en.lproj/InfoPlist.strings
colcon_terminal_notifier.app/Contents/Resources/en.lproj/MainMenu.nib
[tool:pytest]
filterwarnings =
# Suppress deprecation warnings in other packages
ignore:lib2to3 package is deprecated::scspell
ignore:pkg_resources is deprecated as an API::flake8_import_order
ignore:SelectableGroups dict interface is deprecated::flake8
ignore:The 'asyncio_mode' default value will change to 'strict' in future:DeprecationWarning:pytest
ignore:Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated::pyreadline
junit_suite_name = colcon-notification
markers =
flake8
linter
[options.entry_points]
colcon_core.event_handler =
desktop_notification = colcon_notification.event_handler.desktop_notification:DesktopNotificationEventHandler
status = colcon_notification.event_handler.status:StatusEventHandler
terminal_title = colcon_notification.event_handler.terminal_title:TerminalTitleEventHandler
colcon_core.extension_point =
colcon_notification.desktop_notification = colcon_notification.desktop_notification:DesktopNotificationExtensionPoint
colcon_notification.desktop_notification =
notify_send = colcon_notification.desktop_notification.notify_send:NotifySendDesktopNotification
notify2 = colcon_notification.desktop_notification.notify2:Notify2DesktopNotification
terminal_notifier = colcon_notification.desktop_notification.terminal_notifier:TerminalNotifierDesktopNotification
win32 = colcon_notification.desktop_notification.win32:Win32DesktopNotification
[options.package_data]
colcon_notification.desktop_notification.image = *.ico
[flake8]
import-order-style = google
[coverage:run]
source = colcon_notification