From 3cb78cb2a56e3abac01e665b5b19721a301af73c Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 22 Nov 2023 12:30:04 +0100 Subject: [PATCH] add more stuff to pyproject.toml --- pyproject.toml | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index d2dd016..4a80e86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,19 @@ +[project] +name = "locit-testing" +version = "0.1.0" +requires-python = "~=3.11" +dependencies = [ + "pytest == 7.4.3", +] + +[project.optional-dependencies] +dev = [ + "ruff >= 0.1.3", +] + +[tool.setuptools] +package-dir = {"" = "src"} + [tool.ruff] line-length = 120 -target-version = "py312" +target-version = "py311"