thouska / spotpy

A Statistical Parameter Optimization Tool
https://spotpy.readthedocs.io/en/latest/
MIT License
248 stars 150 forks source link

Package dependency scipy #249

Closed cpwnd closed 4 years ago

cpwnd commented 4 years ago

The setupy.py can define package dependencies, which are automatically downloaded when installing spotpy. See documentation 1

from setuptools import setup

setup(...
      install_requires=[
          'scipy',
      ],
      ...)

Scipy was the first I could think of, because it was missing when I ran spotpy the first time. Maybe there are more.

thouska commented 4 years ago

Thx for the Tip, its implemented now with version >=1.5.13