forked from HelgeGehring/gdshelpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.75 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os import path
import gdshelpers
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='gdsHelpers',
version=gdshelpers.__version__,
author='Helge Gehring, Matthias Blaicher, Wladick Hartmann, Wolfram Pernice',
author_email='[email protected]',
project_urls={
"Documentation": "https://gdshelpers.readthedocs.io/en/latest/",
"Bug Tracker": "https://github.com/HelgeGehring/gdshelpers/issues",
"Source Code": "https://github.com/HelgeGehring/gdshelpers",
},
packages=find_packages(),
platforms='All',
python_requires='>=3.5',
license='LGPLv3',
description='A simple Python package for creating or reading GDSII/OASIS layout files.',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=['matplotlib', 'numpy', 'shapely', 'scipy'],
extras_require={
'gdspy_export': ['gdspy(>=1.3.1)'],
'gdscad_export': ['gdscad'],
'oasis_export': ['fatamorgana'],
'dxf_export': ['ezdxf'],
'image_import': ['imageio'],
'image_export': ['descartes'],
'mesh_export': ['trimesh'],
'fdtd_simulation': ['meep']
},
test_suite='gdshelpers.tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)'
]
)