2017-09-18 03:01:48 -07:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
2018-07-21 14:30:59 -07:00
|
|
|
with open('README.md', 'r') as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
2019-09-28 11:22:27 -07:00
|
|
|
with open('fatamorgana/VERSION', 'r') as f:
|
|
|
|
version = f.read().strip()
|
|
|
|
|
2017-09-18 03:01:48 -07:00
|
|
|
setup(name='fatamorgana',
|
2019-09-28 11:22:27 -07:00
|
|
|
version=version,
|
2017-12-17 21:52:57 -08:00
|
|
|
description='OASIS layout format parser and writer',
|
2018-07-21 14:30:59 -07:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type='text/markdown',
|
2017-09-18 03:01:48 -07:00
|
|
|
author='Jan Petykiewicz',
|
|
|
|
author_email='anewusername@gmail.com',
|
2018-01-15 22:30:58 -08:00
|
|
|
url='https://mpxd.net/code/jan/fatamorgana',
|
2017-09-18 03:01:48 -07:00
|
|
|
keywords=[
|
|
|
|
'OASIS',
|
|
|
|
'layout',
|
|
|
|
'design',
|
|
|
|
'CAD',
|
|
|
|
'EDA',
|
|
|
|
'oas',
|
|
|
|
'electronics',
|
|
|
|
'open',
|
|
|
|
'artwork',
|
|
|
|
'interchange',
|
|
|
|
'standard',
|
|
|
|
'mask',
|
|
|
|
'pattern',
|
|
|
|
'IC',
|
|
|
|
'geometry',
|
|
|
|
'geometric',
|
|
|
|
'polygon',
|
|
|
|
'gds',
|
|
|
|
],
|
|
|
|
classifiers=[
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Environment :: Other Environment',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Intended Audience :: Information Technology',
|
|
|
|
'Intended Audience :: Manufacturing',
|
|
|
|
'Intended Audience :: Science/Research',
|
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3',
|
|
|
|
'Topic :: Scientific/Engineering',
|
|
|
|
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
|
|
|
|
],
|
|
|
|
packages=find_packages(),
|
2019-09-28 11:22:27 -07:00
|
|
|
package_data={
|
2020-05-19 00:51:40 -07:00
|
|
|
'fatamorgana': ['VERSION',
|
|
|
|
'py.typed',
|
|
|
|
],
|
2019-09-28 11:22:27 -07:00
|
|
|
},
|
2017-09-18 03:01:48 -07:00
|
|
|
install_requires=[
|
|
|
|
'typing',
|
|
|
|
],
|
|
|
|
extras_require={
|
|
|
|
'numpy': ['numpy'],
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|