Metadata-Version: 1.1
Name: pyeagle
Version: 0.1.1
Summary: Read/write EAGLE 6 CAD files
Home-page: http://github.com/storborg/pyeagle
Author: Scott Torborg
Author-email: storborg@gmail.com
License: MIT
Description: PyEAGLE - Read / Write Cadsoft EAGLE Files
        ==========================================
        
        `Scott Torborg <http://www.scotttorborg.com>`_
        
        PyEAGLE is an interchange API to read and write Cadsoft EAGLE XML (v6 and
        later) schematic, library, and PCB layout files.
        
        Documentation is
        `hosted at Read The Docs <http://pyeagle.readthedocs.org/en/latest>`_.
        
        
        Installation
        ============
        
        Install with pip::
        
            $ pip install pyeagle
        
        License
        =======
        
        PyEAGLE is licensed under an MIT license. Please see the LICENSE file for more
        information.
        
        
        Example Usage
        =============
        
        .. code-block:: python
        
            schematic = pyeagle.open('hello.sch')
        
            lib = pyeagle.open('SparkFun-Sensors.lbr')
            for part in lib:
                print part
        
Keywords: eagle pcb cadsoft schematic eda
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: MIT License
