forked from colcon/colcon-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
134 lines (128 loc) · 5.16 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
[metadata]
name = colcon-core
version = attr: colcon_core.__version__
url = https://colcon.readthedocs.io
project_urls =
Changelog = https://github.com/colcon/colcon-core/milestones?direction=desc&sort=due_date&state=closed
GitHub = https://github.com/colcon/colcon-core/
author = Dirk Thomas
author_email = [email protected]
maintainer = Dirk Thomas
maintainer_email = [email protected]
classifiers =
Development Status :: 3 - Alpha
Environment :: Console
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 = Command line tool to build sets of software packages.
long_description = file: README.rst
keywords = colcon
[options]
python_requires = >=3.5
install_requires =
coloredlogs; sys_platform == 'win32'
distlib
EmPy
# the pytest dependency and its extensions are provided for convenience
# even though they are only conditional
pytest
pytest-cov
pytest-repeat
pytest-rerunfailures
setuptools>=30.3.0
packages = find:
tests_require =
flake8>=3.6.0
flake8-blind-except
flake8-builtins
flake8-class-newline
flake8-comprehensions
flake8-deprecated
flake8-docstrings
flake8-import-order
flake8-quotes
mock
pep8-naming
pylint
pytest
pytest-cov
scspell3k>=2.2
zip_safe = false
[options.packages.find]
exclude =
test
test.*
[tool:pytest]
filterwarnings =
error
ignore:the imp module is deprecated in favour of importlib.*:DeprecationWarning
ignore:the imp module is deprecated in favour of importlib.*:PendingDeprecationWarning
junit_suite_name = colcon-core
[options.entry_points]
colcon_core.argument_parser =
colcon_core.environment =
path = colcon_core.environment.path:PathEnvironment
pythonpath = colcon_core.environment.pythonpath:PythonPathEnvironment
colcon_core.environment_variable =
all_shells = colcon_core.shell:ALL_SHELLS_ENVIRONMENT_VARIABLE
default_executor = colcon_core.executor:DEFAULT_EXECUTOR_ENVIRONMENT_VARIABLE
extension_blacklist = colcon_core.entry_point:EXTENSION_BLACKLIST_ENVIRONMENT_VARIABLE
home = colcon_core.command:HOME_ENVIRONMENT_VARIABLE
log_level = colcon_core.command:LOG_LEVEL_ENVIRONMENT_VARIABLE
warnings = colcon_core.command:WARNINGS_ENVIRONMENT_VARIABLE
colcon_core.event_handler =
console_direct = colcon_core.event_handler.console_direct:ConsoleDirectEventHandler
console_start_end = colcon_core.event_handler.console_start_end:ConsoleStartEndEventHandler
log_command = colcon_core.event_handler.log_command:LogCommandEventHandler
colcon_core.executor =
sequential = colcon_core.executor.sequential:SequentialExecutor
colcon_core.extension_point =
colcon_core.argument_parser = colcon_core.argument_parser:ArgumentParserDecoratorExtensionPoint
colcon_core.environment = colcon_core.environment:EnvironmentExtensionPoint
colcon_core.event_handler = colcon_core.event_handler:EventHandlerExtensionPoint
colcon_core.executor = colcon_core.executor:ExecutorExtensionPoint
colcon_core.package_augmentation = colcon_core.package_augmentation:PackageAugmentationExtensionPoint
colcon_core.package_discovery = colcon_core.package_discovery:PackageDiscoveryExtensionPoint
colcon_core.package_identification = colcon_core.package_identification:PackageIdentificationExtensionPoint
colcon_core.package_selection = colcon_core.package_selection:PackageSelectionExtensionPoint
colcon_core.prefix_path = colcon_core.prefix_path:PrefixPathExtensionPoint
colcon_core.python_testing = colcon_core.task.python.test:PythonTestingStepExtensionPoint
colcon_core.shell = colcon_core.shell:ShellExtensionPoint
colcon_core.task.build = colcon_core.task:TaskExtensionPoint
colcon_core.task.test = colcon_core.task:TaskExtensionPoint
colcon_core.verb = colcon_core.verb:VerbExtensionPoint
colcon_core.package_augmentation =
colcon_core.package_discovery =
path = colcon_core.package_discovery.path:PathPackageDiscovery
colcon_core.package_identification =
ignore = colcon_core.package_identification.ignore:IgnorePackageIdentification
python = colcon_core.package_identification.python:PythonPackageIdentification
colcon_core.package_selection =
colcon_core.prefix_path =
colcon = colcon_core.prefix_path.colcon:ColconPrefixPath
colcon_core.python_testing =
pytest = colcon_core.task.python.test.pytest:PytestPythonTestingStep
setuppy_test = colcon_core.task.python.test.setuppy_test:SetuppyPythonTestingStep
colcon_core.shell =
bat = colcon_core.shell.bat:BatShell
dsv = colcon_core.shell.dsv:DsvShell
sh = colcon_core.shell.sh:ShShell
colcon_core.task.build =
python = colcon_core.task.python.build:PythonBuildTask
colcon_core.task.test =
python = colcon_core.task.python.test:PythonTestTask
colcon_core.verb =
build = colcon_core.verb.build:BuildVerb
test = colcon_core.verb.test:TestVerb
console_scripts =
colcon = colcon_core.command:main
[options.package_data]
colcon_core.shell.template = *.em
[flake8]
import-order-style = google