Metadata-Version: 2.1
Name: cmake-setuptools
Version: 0.1.3
Summary: Provides some usable cmake related build extensions
Home-page: https://github.com/raydouglass/cmake_setuptools
Author: Ray Douglass
License: Apache 2.0
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Build Tools
Description-Content-Type: text/markdown
Requires-Dist: setuptools
Requires-Dist: wheel

# CMake Setuptools

A small library of `setuptools` extensions to ease building python packages which have a cmake component.

## Install

`pip install cmake_setuptools`

## Usage

```python
from setuptools import setup
from cmake_setuptools import *

setup(name='mypackage',
      description='',
      version='0.0.0.dev0',
      ext_modules=[CMakeExtension('make_target')],
      cmdclass={'build_ext': CMakeBuildExt}
      )
```

