2016-03-15 19:12:39 -07:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2016-03-27 17:29:46 -07:00
|
|
|
from setuptools import setup, find_packages
|
2016-03-15 19:12:39 -07:00
|
|
|
|
|
|
|
setup(name='masque',
|
|
|
|
version='0.1',
|
|
|
|
description='Lithography mask library',
|
|
|
|
author='Jan Petykiewicz',
|
|
|
|
author_email='anewusername@gmail.com',
|
|
|
|
url='https://mpxd.net/gogs/jan/masque',
|
2016-03-27 17:23:18 -07:00
|
|
|
packages=find_packages(),
|
2016-03-22 14:41:18 -07:00
|
|
|
install_requires=[
|
|
|
|
'numpy'
|
|
|
|
],
|
|
|
|
extras_require={
|
|
|
|
'visualization': ['matplotlib'],
|
|
|
|
'gdsii': ['python-gdsii'],
|
|
|
|
'svg': ['svgwrite'],
|
2016-10-19 16:52:28 -07:00
|
|
|
'text': ['freetype-py', 'matplotlib']
|
2016-03-22 14:41:18 -07:00
|
|
|
},
|
|
|
|
)
|
2016-03-15 19:12:39 -07:00
|
|
|
|