PySCeS / pysces

The official PySCeS project source code repository.
https://pysces.github.io
Other
34 stars 10 forks source link

Make ipyparallel installation optional through `setup.py` #62

Closed jonrkarr closed 3 years ago

jonrkarr commented 3 years ago

It would be helpful to make ipyparallel an optional requirement so its installation can be managed along with the installation of PySCeS.

It could be managed by adding something like this to setup.py:

setuptools.setup(
    ...
    extras_require={
        'parscan': ['ipyparallel']
    }
)

Then ipyparallel could be installed using pip install pysces[parscan].

jmrohwer commented 3 years ago

Implemented in 7fb2c50, also for the other optional requirements sbml and cvode.