forked from colcon/colcon-cmake
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
22c8a11
commit 22d7e06
Showing
2 changed files
with
65 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
[metadata] | ||
name = colcon-cmake | ||
version = attr: colcon_cmake.__version__ | ||
url = https://colcon.github.io | ||
download_url = https://github.com/colcon/colcon-cmake/releases | ||
author = Dirk Thomas | ||
author_email = [email protected] | ||
maintainer = Dirk Thomas | ||
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 support CMake packages. | ||
keywords = colcon | ||
|
||
[options] | ||
install_requires = | ||
colcon-core | ||
colcon-library-path | ||
packages = find: | ||
tests_require = | ||
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 | ||
zip_safe = true | ||
|
||
[options.entry_points] | ||
colcon_argcomplete.argcomplete_completer = | ||
cmake_args = colcon_cmake.argcomplete_completer.cmake_args:CmakeArgcompleteCompleter | ||
colcon_core.environment = | ||
cmake_module_path = colcon_cmake.environment.cmake_module_path:CmakeModulePathEnvironment | ||
cmake_prefix_path = colcon_cmake.environment.cmake_prefix_path:CmakePrefixPathEnvironment | ||
colcon_core.environment_variable = | ||
cmake_command = colcon_cmake.task.cmake:CMAKE_COMMAND_ENVIRONMENT_VARIABLE | ||
ctest_command = colcon_cmake.task.cmake:CTEST_COMMAND_ENVIRONMENT_VARIABLE | ||
colcon_core.package_identification = | ||
cmake = colcon_cmake.package_identification.cmake:CmakePackageIdentification | ||
colcon_core.task.build = | ||
cmake = colcon_cmake.task.cmake.build:CmakeBuildTask | ||
colcon_core.task.test = | ||
cmake = colcon_cmake.task.cmake.test:CmakeTestTask |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# Copyright 2016-2018 Dirk Thomas | ||
# Licensed under the Apache License, Version 2.0 | ||
|
||
from setuptools import setup | ||
|
||
setup() |