Skip to content

Commit

Permalink
add setup files
Browse files Browse the repository at this point in the history
  • Loading branch information
dirk-thomas committed Mar 19, 2018
1 parent 22c8a11 commit 22d7e06
Show file tree
Hide file tree
Showing 2 changed files with 65 additions and 0 deletions.
59 changes: 59 additions & 0 deletions setup.cfg
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
6 changes: 6 additions & 0 deletions setup.py
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()

0 comments on commit 22d7e06

Please sign in to comment.