Metadata-Version: 2.1
Name: scikit-build
Version: 0.11.1
Summary: Improved build system generator for Python C/C++/Fortran/Cython extensions
Home-page: https://github.com/scikit-build/scikit-build
Author: The scikit-build team
Author-email: scikit-build@googlegroups.com
License: MIT
Keywords: scikit-build
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/x-rst; charset=UTF-8
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: wheel (>=0.29.0)
Requires-Dist: packaging
Requires-Dist: distro
Requires-Dist: setuptools (<45,>=28.0.0) ; python_version < "3"
Requires-Dist: setuptools (>=28.0.0) ; python_version >= "3"

===============================
scikit-build
===============================

Improved build system generator for CPython C/C++/Fortran/Cython extensions.

Better support is available for additional compilers, build systems, cross
compilation, and locating dependencies and determining their build
requirements.

The **scikit-build** package is fundamentally just glue between
the `setuptools` Python module and `CMake <https://cmake.org/>`_.

To get started, see `this example <https://scikit-build.readthedocs.io/en/latest/usage.html#example-of-setup-py-cmakelists-txt-and-pyproject-toml>`_ and `scikit-build-sample-projects <https://github.com/scikit-build/scikit-build-sample-projects>`_.


Latest Release
--------------

.. table::

  +-----------------------------------------------------------------------------+-------------------------------------------------------------------------------+
  | Versions                                                                    | Downloads                                                                     |
  +=============================================================================+===============================================================================+
  | .. image:: https://img.shields.io/pypi/v/scikit-build.svg                   | .. image:: https://img.shields.io/badge/downloads-660k%20total-green.svg      |
  |     :target: https://pypi.python.org/pypi/scikit-build                      |     :target: https://pypi.python.org/pypi/scikit-build                        |
  +-----------------------------------------------------------------------------+-------------------------------------------------------------------------------+
  | .. image:: https://anaconda.org/conda-forge/scikit-build/badges/version.svg | .. image:: https://anaconda.org/conda-forge/scikit-build/badges/downloads.svg |
  |     :target: https://anaconda.org/conda-forge/scikit-build                  |     :target: https://anaconda.org/conda-forge/scikit-build                    |
  +-----------------------------------------------------------------------------+-------------------------------------------------------------------------------+


Build Status
------------

.. table::

  +---------------+-----------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------+
  |               | Linux                                                                                   | MacOSX                                                                                  | Windows                                                                                                   |
  +===============+=========================================================================================+=========================================================================================+===========================================================================================================+
  | PyPI          | .. image:: https://circleci.com/gh/scikit-build/scikit-build.svg?style=shield           | .. image:: https://img.shields.io/travis/scikit-build/scikit-build.svg?maxAge=2592000   | .. image:: https://ci.appveyor.com/api/projects/status/77bjtsihsjaywjr0?svg=true                          |
  |               |     :target: https://circleci.com/gh/scikit-build/scikit-build                          |     :target: https://travis-ci.org/scikit-build/scikit-build                            |    :target: https://ci.appveyor.com/project/scikit-build/scikit-build/branch/master                       |
  +---------------+-----------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------+
  | Conda         | .. image:: https://circleci.com/gh/conda-forge/scikit-build-feedstock.svg?style=shield  | .. image:: https://travis-ci.org/conda-forge/scikit-build-feedstock.svg?branch=master   | .. image:: https://ci.appveyor.com/api/projects/status/github/conda-forge/scikit-build-feedstock?svg=True |
  |               |     :target: https://circleci.com/gh/conda-forge/scikit-build-feedstock                 |     :target: https://travis-ci.org/conda-forge/scikit-build-feedstock                   |    :target: https://ci.appveyor.com/project/conda-forge/scikit-build-feedstock/branch/master              |
  +---------------+-----------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------+-----------------------------------------------------------------------------------------------------------+

Overall Health
--------------

.. image:: https://requires.io/github/scikit-build/scikit-build/requirements.svg?branch=master
    :target: https://requires.io/github/scikit-build/scikit-build/requirements/?branch=master
    :alt: Requirements Status

.. image:: https://codecov.io/gh/scikit-build/scikit-build/branch/master/graph/badge.svg
    :target: https://codecov.io/gh/scikit-build/scikit-build

.. image:: https://landscape.io/github/scikit-build/scikit-build/master/landscape.svg?style=flat
    :target: https://landscape.io/github/scikit-build/scikit-build
    :alt: Code Health

Miscellaneous
-------------

* Free software: MIT license
* Documentation: http://scikit-build.readthedocs.org
* Source code: https://github.com/scikit-build/scikit-build
* Mailing list: https://groups.google.com/forum/#!forum/scikit-build




History
-------

PyCMake was created at SciPy 2014 in response to general difficulties building
C++ and Fortran based Python extensions across platforms.  It was renamed to
"scikit-build" in 2016.


