Skip to content

Commit

Permalink
Version 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Hideousmon committed Sep 6, 2021
1 parent 7f976fe commit 08b7f19
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ The documentation can be found [here](https://splayout.readthedocs.io/en/latest/
* New class: Circle, Rectangle.
* Add port points definition for Polygon.

### Version 0.1.3 & Version 0.1.4 (Sep 6, 2021)
### Version 0.1.4 & Version 0.1.5 (Sep 6, 2021)

* FDTD API added.
* Binary Bat Algorithm & Direct Binary Search Algorithm for inverse design.
Expand Down
7 changes: 2 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
#!/usr/bin/env python

#from distutils.core import setup

from setuptools import setup

with open("README.md") as fin:
long_description = fin.read()

with open("splayout/__init__.py") as fin:
for line in fin:
Expand All @@ -15,10 +13,9 @@
setup(name='SPLayout',
version=version,
description='Silicon Photonics Design Tools for GDSII Files.',
# long_description=long_description,
author='Zhenyu ZHAO',
author_email='[email protected]',
install_requires=['gdspy'],
install_requires=['gdspy','numpy','scipy'],
url="https://github.com/Hideousmon/SPLayout",
packages=['splayout']
)
2 changes: 1 addition & 1 deletion splayout/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.4"
__version__ = "0.1.5"

from splayout.AEMDgrating import MAKE_AEMD_GRATING
from splayout.bend import Bend
Expand Down

0 comments on commit 08b7f19

Please sign in to comment.