Skip to content

Commit

Permalink
add install_requires in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
axelvonkamp committed Sep 26, 2024
1 parent 83cd978 commit 9a8d8d2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -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" },
]
Expand All @@ -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"]
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand Down

0 comments on commit 9a8d8d2

Please sign in to comment.