generated from colcon/template-package
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
18 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,7 @@ | ||
template-package | ||
================ | ||
colcon-top-level-workspace | ||
========================== | ||
|
||
An extension for `colcon-core <https://github.com/colcon/colcon-core>`_ to act as a template for new extensions. | ||
An extension for `colcon-core <https://github.com/colcon/colcon-core>`_ to locate and use a top-level workspace when in subdirectories thereof. | ||
|
||
When using this template, be sure to replace all instances of the word "template" in the repository:: | ||
|
||
$ find * -type f | xargs sed -i 's/template-package/colcon-package-name/g' | ||
$ find * -type f | xargs sed -i 's/template_package/colcon_package_name/g' | ||
$ mv template_package colcon_package_name | ||
$ grep -iR template * | ||
This package looks for marker files created by colcon which infer the root of a workspace. | ||
Depending on the your workspace configuration, additional heuristics may be necessary to handle corner cases. |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[metadata] | ||
name = template-package | ||
version = attr: template_package.__version__ | ||
name = colcon-top-level-workspace | ||
version = attr: colcon_top_level_workspace.__version__ | ||
url = https://colcon.readthedocs.io | ||
project_urls = | ||
Changelog = https://github.com/colcon/template-package/milestones?direction=desc&sort=due_date&state=closed | ||
GitHub = https://github.com/colcon/template-package/ | ||
author = Template Author | ||
author_email = [email protected] | ||
Changelog = https://github.com/colcon/colcon-top-level-workspace/milestones?direction=desc&sort=due_date&state=closed | ||
GitHub = https://github.com/colcon/colcon-top-level-workspace/ | ||
author = Scott K Logan | ||
author_email = [email protected] | ||
classifiers = | ||
Development Status :: 3 - Alpha | ||
Environment :: Plugins | ||
|
@@ -17,7 +17,7 @@ classifiers = | |
Programming Language :: Python | ||
Topic :: Software Development :: Build Tools | ||
license = Apache License, Version 2.0 | ||
description = Extension for colcon to serve as a template for new extensions. | ||
description = Extension for colcon to locate and use a top-level workspace. | ||
long_description = file: README.rst | ||
keywords = colcon | ||
|
||
|
@@ -46,12 +46,12 @@ test = | |
scspell3k>=2.2 | ||
|
||
[tool:pytest] | ||
junit_suite_name = template-package | ||
junit_suite_name = colcon-top-level-workspace | ||
|
||
[options.entry_points] | ||
|
||
[flake8] | ||
import-order-style = google | ||
|
||
[coverage:run] | ||
source = template_package | ||
source = colcon_top_level_workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
apache | ||
colcon | ||
iterdir | ||
pathlib | ||
pytest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters