masque/setup.py
jan 3a460a9296 Add Text shape
Rendered using freetype-py and matplotlib

Can eliminate the matplotlib dependency if I write my own bezier code,
but that's work (and I already use matplotlib...).
2016-10-19 16:52:28 -07:00

23 lines
565 B
Python

#!/usr/bin/env python
from setuptools import setup, find_packages
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',
packages=find_packages(),
install_requires=[
'numpy'
],
extras_require={
'visualization': ['matplotlib'],
'gdsii': ['python-gdsii'],
'svg': ['svgwrite'],
'text': ['freetype-py', 'matplotlib']
},
)