You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
masque/setup.py

24 lines
603 B
Python

#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='masque',
8 years ago
version='0.2',
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'],
'clipping': ['pyclipper'],
},
)