Metadata-Version: 2.1
Name: cmake-setup
Version: 0.1.1
Summary: Provides some usable cmake related build extensions
Home-page: https://github.com/galois-advertising/cmake_setup
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

# CMake Setuptools

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

## Install

`pip install cmake_setup`

## Usage

```python
from setuptools import setup
from cmake_setup import *

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

## upload

```
$ python setup.py sdist bdist_wheel
$ python -m twine upload dist/*
```


