change python required and install packages

This commit is contained in:
2025-09-05 11:34:07 +02:00
parent 61eef7db2a
commit cc2fe5ed03
2 changed files with 385 additions and 0 deletions

19
pyproject.toml Normal file
View File

@@ -0,0 +1,19 @@
[project]
name = "oclettings2"
version = "0.1.0"
description = ""
authors = [
{name = "Your Name",email = "you@example.com"}
]
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
"django (==3.0)",
"flake8 (==3.7.0)",
"pytest-django (==3.9.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"