-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
104 lines (96 loc) · 2.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
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
100
101
102
103
104
[metadata]
name = colcon-clean
version = attr: colcon_clean.__version__
url = https://colcon.readthedocs.io
project_urls =
Changelog = https://github.com/colcon/colcon-clean/milestones?direction=desc&sort=due_date&state=closed
GitHub = https://github.com/colcon/colcon-clean/
author = Ruffin White
author_email = [email protected]
maintainer = Ruffin White
maintainer_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Environment :: Plugins
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Operating System :: MacOS
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python
Topic :: Software Development :: Build Tools
license = Apache License, Version 2.0
description = Extension for colcon to clean package workspaces.
long_description = file: README.md
long_description_content_type = text/markdown
keywords = colcon
[options]
python_requires = >=3.6
install_requires =
colcon-core>=0.5.2
scantree<0.0.2a0
scandir;platform_system=='Windows'
packages = find:
zip_safe = true
[options.extras_require]
test =
colcon-defaults
colcon-package-information>=0.3.3
colcon-package-selection>=0.2.10
colcon-recursive-crawl
colcon-test-result>=0.3.8
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.packages.find]
exclude = test
[tool:pytest]
filterwarnings =
error
ignore::DeprecationWarning:colcon_defaults:
ignore::DeprecationWarning:flake8:
ignore::DeprecationWarning:scantree.*:
ignore:lib2to3 package is deprecated::scspell
ignore::pytest.PytestUnraisableExceptionWarning
junit_suite_name = colcon-clean
markers =
flake8
linter
[options.entry_points]
colcon_clean.base_handler =
build = colcon_clean.base_handler.build:BuildBaseHandler
install = colcon_clean.base_handler.install:InstallBaseHandler
log = colcon_clean.base_handler.log:LogBaseHandler
test_result = colcon_clean.base_handler.test_result:TestResultBaseHandler
colcon_clean.subverb =
workspace = colcon_clean.subverb.workspace:WorkspaceCleanSubverb
packages = colcon_clean.subverb.packages:PackagesCleanSubverb
colcon_core.extension_point =
colcon_clean.base_handler = colcon_clean.base_handler:BaseHandlerExtensionPoint
colcon_clean.subverb = colcon_clean.subverb:CleanSubverbExtensionPoint
colcon_core.verb =
clean = colcon_clean.verb.clean:CleanVerb
[flake8]
import-order-style = google
[coverage:run]
branch = True
source = colcon_clean
[coverage:report]
exclude_lines =
# Have to re-enable the standard pragma
pragma: no cover
# Don't complain if tests don't hit defensive assertion code:
raise NotImplementedError()
# Don't complain if non-runnable code isn't run:
pass