feat: base flask x gunicorn server
This commit is contained in:
+5
-2
@@ -4,7 +4,10 @@ version = "0.0.0"
|
||||
description = ""
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.14"
|
||||
dependencies = []
|
||||
dependencies = [
|
||||
"flask>=3.1.3,<4.0.0",
|
||||
"gunicorn>=26.0.0,<27.0.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
tout-doux = "app.__main__:main"
|
||||
@@ -30,7 +33,7 @@ module-name = "app"
|
||||
|
||||
[tool.ruff.lint]
|
||||
select = ["ALL"]
|
||||
ignore = ["D", "E501", "ANN401", "BLE001", "COM812", "S101", "PT"]
|
||||
ignore = ["D", "E501", "ANN401", "BLE001", "COM812", "S101", "PT", "S104"]
|
||||
|
||||
[tool.ty.src]
|
||||
include = ["app", "tests"]
|
||||
|
||||
Reference in New Issue
Block a user