From d8225c3a0838c1d8d8a1b8685082c98cd640b6bc Mon Sep 17 00:00:00 2001 From: Helge Gehring Date: Tue, 30 Jul 2019 03:21:29 +0200 Subject: [PATCH] fixed dependencies in setup.py --- gdshelpers/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gdshelpers/__init__.py b/gdshelpers/__init__.py index e37025a..981efbe 100644 --- a/gdshelpers/__init__.py +++ b/gdshelpers/__init__.py @@ -3,4 +3,4 @@ configuration = _Configuration() -__version__ = '1.0.1' +__version__ = '1.0.2' diff --git a/setup.py b/setup.py index 1f03682..b93bf60 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ description='A simple Python package for creating or reading GDSII/OASIS layout files.', long_description=long_description, long_description_content_type='text/markdown', - requires=['matplotlib', 'numpy', 'shapely', 'scipy'], + install_requires=['matplotlib', 'numpy', 'shapely', 'scipy'], extras_require={ 'gdspy_export': ['gdspy(>=1.3.1)'], 'gdscad_export': ['gdscad'],