From 06925c07d6b4b7ca8209b8966334f24705d840e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Hrn=C4=8Diar?= Date: Thu, 22 Apr 2021 10:01:27 +0200 Subject: [PATCH 1/2] Require setuptools, klusta/__init__.py imports pkg_resources --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 8f0a1c5..3d2d3dd 100644 --- a/setup.py +++ b/setup.py @@ -51,6 +51,7 @@ def _package_tree(pkgroot): package_data={ 'klusta': ['*.txt', '*.prb'], }, + install_requires=['setuptools'], entry_points={ 'console_scripts': [ 'klusta = klusta.launch:main' From 6d6c9c60b9a24bff9b7449a81e670822d9ef0889 Mon Sep 17 00:00:00 2001 From: "Benjamin A. Beasley" Date: Mon, 16 Dec 2024 10:26:30 -0500 Subject: [PATCH 2/2] Add missing runtime/install-time dependencies to setup.py --- setup.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 3d2d3dd..795b107 100644 --- a/setup.py +++ b/setup.py @@ -51,7 +51,16 @@ def _package_tree(pkgroot): package_data={ 'klusta': ['*.txt', '*.prb'], }, - install_requires=['setuptools'], + install_requires=[ + 'click', + 'h5py', + 'numpy', + 'scipy', + # For pkg_resources: + 'setuptools', + 'six', + 'tqdm', + ], entry_points={ 'console_scripts': [ 'klusta = klusta.launch:main'