-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f976fe
commit 08b7f19
Showing
3 changed files
with
4 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
|
@@ -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'] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters