cosmetic and doc changes

This commit is contained in:
Jan Petykiewicz 2020-11-01 19:45:57 -08:00
parent 12f158ad3c
commit ccb42e220f
2 changed files with 5 additions and 5 deletions

View File

@ -2,9 +2,9 @@
masque 2D CAD library masque 2D CAD library
masque is an attempt to make a relatively small library for designing lithography masque is an attempt to make a relatively small library for designing lithography
masks. The general idea is to implement something resembling the GDSII file-format, but masks. The general idea is to implement something resembling the GDSII and OASIS file-formats,
with some vectorized element types (eg. circles, not just polygons), better support for but with some additional vectorized element types (eg. ellipses, not just polygons), better
E-beam doses, and the ability to output to multiple formats. support for E-beam doses, and the ability to interface with multiple file formats.
`Pattern` is a basic object containing a 2D lithography mask, composed of a list of `Shape` `Pattern` is a basic object containing a 2D lithography mask, composed of a list of `Shape`
objects, a list of `Label` objects, and a list of references to other `Patterns` (using objects, a list of `Label` objects, and a list of references to other `Patterns` (using

View File

@ -3,7 +3,7 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
with open('README.md', 'r') as f: with open('README.md', 'rt') as f:
long_description = f.read() long_description = f.read()
with open('masque/VERSION.py', 'rt') as f: with open('masque/VERSION.py', 'rt') as f: