From 1835640799042aeb213f9a7c4335c71a82a8e82c Mon Sep 17 00:00:00 2001 From: Laetitia Getti Date: Wed, 5 Apr 2023 10:27:46 +0200 Subject: [PATCH] use pip-compile to generate requirements.txt --- pyproject.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 34ac446..51ef109 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,25 @@ version = "0.0.1" description = "Web application for organising grouped orders" readme = "readMe.md" license = {file = "LICENSE"} +dependencies = [ + "django>=4,<5", + "psycopg2>=2,<3", +] + +[build-system] +requires = [ + "setuptools","wheel" +] +build-backend = "setuptools.build_meta" + +[project.optional-dependencies] +dev = [ + "pytest>=7,<8", + "flake8-black<1", + "pip-tools>=6,<7", + "pytest-isort>=3,<4", + "pytest-django>=4,<5", +] [tool.pytest.ini_options] DJANGO_SETTINGS_MODULE = "la_chariotte.settings"