From 2a256f68deb3efe6376c1d47fe264220c7fbb9f9 Mon Sep 17 00:00:00 2001 From: Aineopintojen-harjoitustyo-Algoritmit-j Date: Thu, 11 Jan 2024 17:19:40 +0200 Subject: Let project be a new poetry project. --- .gitignore | 1 + __init__.py | 0 pyproject.toml | 14 ++++++++++++++ tests/__init__.py | 0 4 files changed, 15 insertions(+) create mode 100644 .gitignore create mode 100644 __init__.py create mode 100644 pyproject.toml create mode 100644 tests/__init__.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b25c15b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*~ diff --git a/__init__.py b/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..c5dcdd0 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,14 @@ +[tool.poetry] +name = "miinaharava" +version = "0.1.0" +description = "Miinaharava ratkaisijalla" +authors = ["Aineopintojen-harjoitustyo-Algoritmit-j "] +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.11" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3