14 lines
303 B
Python
14 lines
303 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
from distutils.core import setup
|
||
|
|
||
|
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=['masque'],
|
||
|
)
|
||
|
|