forked from BarceloChristian/colcon-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
89 lines (71 loc) · 2 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
# Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
[metadata]
name = colcon-bundle
version = attr: colcon_bundle.__version__
author = Matthew Murphy
author_email = [email protected]
maintainer = Matthew Murphy
maintainer_email = [email protected]
project_urls =
Changelog = https://github.com/colcon/colcon-bundle/milestones?direction=desc&sort=due_date&state=closed
GitHub = https://github.com/colcon/colcon-bundle/
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 = Plugin to bundle built software for the colcon command line tool
long_description = file: README.rst
keywords = colcon
[options]
python_requires = >=3.5
install_requires =
colcon-core>=0.3.15
colcon-python-setup-py>=0.2.1
setuptools>=30.3.0
distro>=1.3.0
packages = find:
tests_require =
flake8
flake8-blind-except
flake8-builtins
flake8-class-newline
flake8-comprehensions
flake8-deprecated
flake8-docstrings
flake8-import-order
flake8-quotes
pep8-naming
pyenchant
pylint
pytest
pytest-cov
pytest-asyncio
zip_safe = true
include_package_data = true
[options.entry_points]
colcon_core.verb =
bundle = colcon_bundle.verb.bundle:BundleVerb
colcon_bundle.installer =
apt = colcon_bundle.installer.apt:AptBundleInstallerExtension
pip = colcon_bundle.installer.pip:PipBundleInstallerExtensionPoint
pip3 = colcon_bundle.installer.pip3:Pip3BundleInstallerExtensionPoint
colcon_bundle.task.bundle =
python = colcon_bundle.task.python.bundle:PythonBundleTask
[options.packages.find]
exclude =
test
test.*
[aliases]
test = pytest
[tool:pytest]
junit_suite_name = colcon-bundle
[flake8]
import-order-style = google