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:
|
with open('masque/VERSION.py', 'rt') as f:
|
||||||
version = f.readlines()[2].strip()
|
version = f.readlines()[2].strip()
|
||||||
|
|
||||||
setup(name='masque',
|
setup(
|
||||||
|
name='masque',
|
||||||
version=version,
|
version=version,
|
||||||
description='Lithography mask library',
|
description='Lithography mask library',
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
@ -19,16 +20,17 @@ setup(name='masque',
|
|||||||
url='https://mpxd.net/code/jan/masque',
|
url='https://mpxd.net/code/jan/masque',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
package_data={
|
package_data={
|
||||||
'masque': ['py.typed',
|
'masque': [
|
||||||
]
|
'py.typed',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'numpy',
|
'numpy>=1.21',
|
||||||
'klamath>=1.0',
|
'klamath>=1.0',
|
||||||
],
|
],
|
||||||
extras_require={
|
extras_require={
|
||||||
'gdsii': ['python-gdsii'],
|
'gdsii': ['python-gdsii'],
|
||||||
'oasis': ['fatamorgana>=0.7'],
|
'oasis': ['fatamorgana>=0.11'],
|
||||||
'dxf': ['ezdxf'],
|
'dxf': ['ezdxf'],
|
||||||
'svg': ['svgwrite'],
|
'svg': ['svgwrite'],
|
||||||
'visualization': ['matplotlib'],
|
'visualization': ['matplotlib'],
|
||||||
|
Loading…
Reference in New Issue
Block a user