No description
Find a file
dependabot-preview[bot] ac732b4270
Bump pytest-cov from 2.8.1 to 2.10.1
Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 2.8.1 to 2.10.1.
- [Release notes](https://github.com/pytest-dev/pytest-cov/releases)
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](https://github.com/pytest-dev/pytest-cov/compare/v2.8.1...v2.10.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-08-17 10:09:01 +00:00
.github/workflows Do not fail fast when matrix build fails 2019-11-28 00:45:00 -03:00
doc doc options 2015-02-18 23:28:19 -05:00
examples Fix hard requirement of cairo per #83, and add stubs for required subclass methods to GerberContext per #84 2018-06-05 08:57:37 -04:00
gerber Merge pull request #99 from chintal/gEDA_layers 2019-11-27 11:44:13 -03:00
.coveragerc Add .coveragerc 2019-11-26 23:31:48 -03:00
.gitignore Migrate to pytest (#111) 2019-11-26 00:37:41 -03:00
LICENSE Initial commit 2013-12-17 12:01:34 -08:00
Makefile Add .coveragerc 2019-11-26 23:31:48 -03:00
README.md Syntax highlight example code in README 2019-12-28 20:55:43 -05:00
requirements-dev.txt Bump pytest-cov from 2.8.1 to 2.10.1 2020-08-17 10:09:01 +00:00
requirements-docs.txt Bump sphinx from 3.0.1 to 3.0.3 2020-04-27 10:20:16 +00:00
requirements.txt Rename requirements for docs and dev and upgrade nose and coverage packages 2019-11-25 15:34:10 -03:00
setup.py Fix typo in license trove classifier 2019-12-28 20:37:41 -05:00

pcb-tools

CI Coverage Docs

Tools to handle Gerber and Excellon files in Python.

Usage Example:

import gerber
from gerber.render import GerberCairoContext

# Read gerber and Excellon files
top_copper = gerber.read('example.GTL')
nc_drill = gerber.read('example.txt')

# Rendering context
ctx = GerberCairoContext()

# Create SVG image
top_copper.render(ctx)
nc_drill.render(ctx, 'composite.svg')

Rendering Examples:

Top Composite rendering

Composite Top Image Composite Bottom Image

Source code for this example can be found here.

Install from source:

$ git clone https://github.com/curtacircuitos/pcb-tools.git
$ cd pcb-tools
$ pip install -r requirements.txt
$ python setup.py install

Documentation:

PCB Tools Documentation

Development and Testing:

Dependencies for developing and testing pcb-tools are listed in requirements-dev.txt. Use of a virtual environment is strongly recommended.

$ virtualenv venv
$ source venv/bin/activate
(venv)$ pip install -r requirements-dev.txt
(venv)$ pip install -e .

We use pytest to run pcb-tools's suite of unittests and doctests.

(venv)$ pytest