mirror of
https://framagit.org/la-chariotte/la-chariotte.git
synced 2025-05-01 03:12:26 +02:00
use pip-compile to generate requirements.txt
This commit is contained in:
parent
50e72f7235
commit
1835640799
1 changed files with 19 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue