whitespace

nolock
jan 2 years ago
parent 51b7021bdc
commit eb03935948

@ -9,7 +9,8 @@ with open('README.md', 'rt') as f:
with open('masque/VERSION.py', 'rt') as f:
version = f.readlines()[2].strip()
setup(name='masque',
setup(
name='masque',
version=version,
description='Lithography mask library',
long_description=long_description,
@ -19,16 +20,17 @@ setup(name='masque',
url='https://mpxd.net/code/jan/masque',
packages=find_packages(),
package_data={
'masque': ['py.typed',
]
'masque': [
'py.typed',
],
},
install_requires=[
'numpy',
'numpy>=1.21',
'klamath>=1.0',
],
extras_require={
'gdsii': ['python-gdsii'],
'oasis': ['fatamorgana>=0.7'],
'oasis': ['fatamorgana>=0.11'],
'dxf': ['ezdxf'],
'svg': ['svgwrite'],
'visualization': ['matplotlib'],

Loading…
Cancel
Save