From ccb42e220f92846a408a24c6eaeb11504ef3e00b Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Sun, 1 Nov 2020 19:45:57 -0800 Subject: [PATCH] cosmetic and doc changes --- masque/__init__.py | 6 +++--- setup.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/masque/__init__.py b/masque/__init__.py index 48059b3..7572d32 100644 --- a/masque/__init__.py +++ b/masque/__init__.py @@ -2,9 +2,9 @@ masque 2D CAD library 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 - with some vectorized element types (eg. circles, not just polygons), better support for - E-beam doses, and the ability to output to multiple formats. + masks. The general idea is to implement something resembling the GDSII and OASIS file-formats, + but with some additional vectorized element types (eg. ellipses, not just polygons), better + 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` objects, a list of `Label` objects, and a list of references to other `Patterns` (using diff --git a/setup.py b/setup.py index 5dd3085..c9c91ed 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages -with open('README.md', 'r') as f: +with open('README.md', 'rt') as f: long_description = f.read() with open('masque/VERSION.py', 'rt') as f: @@ -23,7 +23,7 @@ setup(name='masque', ] }, install_requires=[ - 'numpy', + 'numpy', ], extras_require={ 'gdsii': ['python-gdsii'],