Metadata-Version: 1.1
Name: kicad-python
Version: 0.0.1
Summary: unofficial abstraction layer for the KiCad API
Home-page: https://github.com/pointhi/kicad-python
Author: Thomas Pointhuber
Author-email: thomas.pointhuber@gmx.at
License: GPL3+
Description: # kicad-python
        
        Abstraction layer for the KiCad python interface.
        
        Be aware this is in initial development and the interface can change anytime!
        
        Inspired by https://github.com/pierstitus/kicad-python
        
        [![Build Status](https://travis-ci.org/pointhi/kicad-python.svg?branch=master)](https://travis-ci.org/pointhi/kicad-python)
        [![Documentation Status](https://readthedocs.org/projects/kicad-python-python/badge/?version=latest)](http://kicad-python-python.readthedocs.io/en/latest/?badge=latest)
        ![Python 2.7](https://img.shields.io/badge/python-2.7-blue.svg)
        
        ## Example usage
        
        ```python
        from kicad.pcbnew import Board
        
        b = Board.from_file('path/to/file.kicad_pcb')
        
        for module in b.modules:
            print(module)
        ```
        
        ## Run Tests
        
        ```bash
        ./setup.py test
        ```
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
