Metadata-Version: 2.0
Name: ccsyspath
Version: 1.0.2
Summary: Find the system include paths for clang and gcc C/C++ compilers
Home-page: http://github.com/AndrewWalker/ccsyspath
Author: Andrew Walker
Author-email: walker.ab@gmail.com
License: MIT
Keywords: clang,gcc,compiler
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Operating System :: OS Independent

ccsyspath 
=========

**ccsyspath helps you find the system include path of your c/c++ compiler**

Supports gcc and clang c compilers.

|license| |build| |coverage|

Usage
-----

You can retrieve all of the system include paths for a specific compiler with
the `system_include_paths` function.

.. code:: python

    import ccsyspath

    paths = ccsyspath.system_include_paths('/path/to/clang')


Acknowledgements
----------------

This package is based on the approach demonstrated in a `stackoverflow answer`_
licensed under the `cc by-sa 3.0 with attribution required`_

Contributing
------------

If you experience problems with ccsyspath, `log them on GitHub`_. If you
want to contribute code, please `fork the code`_ and `submit a pull request`_.

.. _stackoverflow answer: http://stackoverflow.com/a/11946295/2246
.. _log them on Github: https://github.com/AndrewWalker/ccsyspath/issues
.. _fork the code: https://github.com/AndrewWalker/ccsyspath
.. _submit a pull request: https://github.com/AndrewWalker/ccsyspath/pulls
.. _cc by-sa 3.0 with attribution required: https://creativecommons.org/licenses/by-sa/3.0/

.. |license| image:: https://img.shields.io/badge/license-MIT-blue.svg
   :target: https://raw.githubusercontent.com/andrewwalker/ccsyspath/master/LICENSE
   :alt: MIT License

.. |build| image:: https://travis-ci.org/AndrewWalker/ccsyspath.svg?branch=master
   :target: https://travis-ci.org/AndrewWalker/ccsyspath
   :alt: Continuous Integration

.. |coverage| image:: https://coveralls.io/repos/github/AndrewWalker/ccsyspath/badge.svg?branch=master
   :target: https://coveralls.io/github/AndrewWalker/ccsyspath?branch=master
   :alt: Coverage Testing Results



