diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | __init__.py | 0 | ||||
-rw-r--r-- | pyproject.toml | 14 | ||||
-rw-r--r-- | tests/__init__.py | 0 |
4 files changed, 15 insertions, 0 deletions
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 --- /dev/null +++ b/__init__.py 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 <github-hy-tiralabra@v.hix.fi>"] +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 --- /dev/null +++ b/tests/__init__.py |