From 2ffd20182299081e694ad23d9f60883f5f784bb7 Mon Sep 17 00:00:00 2001 From: Philipp Schmidt <philipp.schmidt@xfel.eu> Date: Thu, 15 Jun 2023 11:10:51 +0200 Subject: [PATCH] Add build system requirements, more dependencies and make exdf.cli a package --- pyproject.toml | 2 ++ setup.py | 3 ++- src/exdf/cli/__init__.py | 0 3 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 pyproject.toml create mode 100644 src/exdf/cli/__init__.py diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..174965a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[build-system] +requires = ["cython", "numpy", "setuptools", "wheel"] \ No newline at end of file diff --git a/setup.py b/setup.py index a39645c..2fb68ec 100644 --- a/setup.py +++ b/setup.py @@ -50,12 +50,13 @@ setup( python_requires='>=3.8', install_requires=[ + 'packaging', 'h5py', 'extra_data', ], extras_require={ 'glance': ['uniplot'], - 'test': ['pytest',], + 'test': ['pytest'], }, classifiers=[ diff --git a/src/exdf/cli/__init__.py b/src/exdf/cli/__init__.py new file mode 100644 index 0000000..e69de29 -- GitLab