30 lines
777 B
Python
30 lines
777 B
Python
#!/usr/bin/env python3
|
|
|
|
from setuptools import setup, find_packages
|
|
import masque
|
|
|
|
with open('README.md', 'r') as f:
|
|
long_description = f.read()
|
|
|
|
setup(name='masque',
|
|
version=masque.version,
|
|
description='Lithography mask library',
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
author='Jan Petykiewicz',
|
|
author_email='anewusername@gmail.com',
|
|
url='https://mpxd.net/code/jan/masque',
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
'numpy',
|
|
'pyclipper',
|
|
],
|
|
extras_require={
|
|
'visualization': ['matplotlib'],
|
|
'gdsii': ['python-gdsii'],
|
|
'svg': ['svgwrite'],
|
|
'text': ['freetype-py', 'matplotlib'],
|
|
},
|
|
)
|
|
|