From 6e1e96f92d262836683f4658467d9c3bc05cb419 Mon Sep 17 00:00:00 2001 From: maclariz Date: Mon, 20 May 2024 14:49:52 +0100 Subject: [PATCH 1/4] Update pyproject.toml --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ca000f0..d87c4eb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "pixstem_tools" # Do not edit the next line -version = "GITHUB.RELEASE.TAG" +version = "0.1.5" authors = [ {name="Dr. Ian MacLaren", email="ian.maclaren@glasgow.ac.uk"}, ] From e867a7520e5022dbf9b76f3c8d7b6db9dd8aa32c Mon Sep 17 00:00:00 2001 From: maclariz Date: Mon, 20 May 2024 14:51:21 +0100 Subject: [PATCH 2/4] Update pyproject.toml --- pyproject.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index d87c4eb..1eb9e5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,6 +8,12 @@ authors = [ description = "A python library to aid processing of 4DSTEM data. Developed in the School of Physics and Astronomy at the University of Glasgow." readme = "README.md" requires-python = ">=3.0" +dependencies = [ + "numpy >= 1.19", + "scipy >= 1.5.2", + "matplotlib >= 3.2.2", + "alive-progress >= 3.0.0", +] classifiers = [ "Programming Language :: Python :: 3", "License :: GPL3.0", From d0f61984d8597314394b44ddb91e797bed17be41 Mon Sep 17 00:00:00 2001 From: maclariz Date: Mon, 20 May 2024 14:52:04 +0100 Subject: [PATCH 3/4] Create __init__.py --- __init__.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 __init__.py diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/__init__.py @@ -0,0 +1 @@ + From 0cd18b4102d03b80ac5a47d3dbeadcdb2145e43b Mon Sep 17 00:00:00 2001 From: maclariz Date: Mon, 20 May 2024 15:02:54 +0100 Subject: [PATCH 4/4] Update pyproject.toml --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 1eb9e5e..3960e61 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -22,3 +22,6 @@ classifiers = [ "Operating System :: OS Independent", "Topic :: Education :: Computer Aided Instruction (CAI)", ] +[build-system] +requires = ["setuptools>=61.0"] +build-backend = "setuptools.build_meta"