masque/setup.py

30 lines
776 B
Python
Raw Normal View History

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
2018-08-30 23:12:01 -07:00
import masque
2016-03-15 19:12:39 -07:00
2018-08-30 23:12:15 -07:00
with open('README.md', 'r') as f:
long_description = f.read()
2016-03-15 19:12:39 -07:00
setup(name='masque',
2018-08-30 23:12:01 -07:00
version=masque.version,
2016-03-15 19:12:39 -07:00
description='Lithography mask library',
2018-08-30 23:12:15 -07:00
long_description=long_description,
long_description_content_type='text/markdown',
2016-03-15 19:12:39 -07:00
author='Jan Petykiewicz',
author_email='anewusername@gmail.com',
2018-01-15 22:35:12 -08:00
url='https://mpxd.net/code/jan/masque',
2016-03-27 17:23:18 -07:00
packages=find_packages(),
2016-03-22 14:41:18 -07:00
install_requires=[
'numpy',
'pyclipper',
2016-03-22 14:41:18 -07:00
],
extras_require={
'visualization': ['matplotlib'],
'gdsii': ['python-gdsii'],
'svg': ['svgwrite'],
2017-10-15 11:39:37 -07:00
'text': ['freetype-py', 'matplotlib'],
2016-03-22 14:41:18 -07:00
},
)
2016-03-15 19:12:39 -07:00