whitespace
This commit is contained in:
parent
51b7021bdc
commit
eb03935948
12
setup.py
12
setup.py
@ -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…
Reference in New Issue
Block a user