From 7eefab44432580ea7fdf20d3c7465d4f6cca3a7b Mon Sep 17 00:00:00 2001
From: "ingo.steldermann" <ingo.steldermann@rwth-aachen.de>
Date: Wed, 11 Oct 2023 07:08:36 +0200
Subject: [PATCH] mode to poetry

---
 .gitignore                         |  1 +
 README.md                          |  3 ---
 pyproject.toml                     | 15 +++++++++++++++
 steldermann_test_wheel/__init__.py |  0
 tests/__init__.py                  |  0
 5 files changed, 16 insertions(+), 3 deletions(-)
 create mode 100644 pyproject.toml
 create mode 100644 steldermann_test_wheel/__init__.py
 create mode 100644 tests/__init__.py

diff --git a/.gitignore b/.gitignore
index f7275bb..7d5436b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
 venv/
+poetry.lock
diff --git a/README.md b/README.md
index 28cef57..e69de29 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +0,0 @@
-# A wheel to rule them all...
-
-This is a test wheel on how to get scikit-fdiff usable in pyodide.
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..8ace3c2
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,15 @@
+[tool.poetry]
+name = "steldermann-test-wheel"
+version = "0.1.0"
+description = "A simple test to ship scikit-fdiff to pyodide."
+authors = ["ingo.steldermann <ingo.steldermann@rwth-aachen.de>"]
+readme = "README.md"
+
+[tool.poetry.dependencies]
+python = "^3.9"
+scikit-fdiff = "^0.7.0"
+
+
+[build-system]
+requires = ["poetry-core"]
+build-backend = "poetry.core.masonry.api"
diff --git a/steldermann_test_wheel/__init__.py b/steldermann_test_wheel/__init__.py
new file mode 100644
index 0000000..e69de29
diff --git a/tests/__init__.py b/tests/__init__.py
new file mode 100644
index 0000000..e69de29
-- 
GitLab