From 9a8d8d211637feb5c5e36ed6719815b11732fc43 Mon Sep 17 00:00:00 2001 From: axelvonkamp Date: Thu, 26 Sep 2024 13:29:00 +0200 Subject: [PATCH] add install_requires in setup.py --- pyproject.toml | 4 ++-- setup.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 78b356a..52b5bd2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "efmtool_link" -version = "0.0.7.5" +version = "0.0.8" authors = [ { name="Axel von Kamp", email="vonkamp@mpi-magdeburg.mpg.de" }, ] @@ -12,7 +12,7 @@ classifiers = [ "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", ] -dependencies = ["jpype1", "numpy", "scipy", "cobra>=0.26.3", "psutil", "install-jdk>=1.1"] +dependencies = ["jpype1", "numpy", "scipy", "cobra>=0.26.3", "psutil"] [build-system] requires = ["setuptools", "install-jdk>=1.1", "jpype1"] diff --git a/setup.py b/setup.py index e100a09..30b4203 100644 --- a/setup.py +++ b/setup.py @@ -40,6 +40,7 @@ def run(self): packages=['efmtool_link', 'efmtool_link.lib'], package_dir={'efmtool_link': 'efmtool_link'}, package_data={'efmtool_link': ['lib/*.jar']}, + install_requires=['install-jdk>=1.1', 'jpype1'], cmdclass={ 'install': PostInstallCommand, },