Initialize backend project with essential files and configurations
This commit is contained in:
18
pyproject.toml
Normal file
18
pyproject.toml
Normal file
@@ -0,0 +1,18 @@
|
||||
[project]
|
||||
name = "backend"
|
||||
version = "0.1.0"
|
||||
description = "Add your description here"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = []
|
||||
|
||||
[dependency-groups]
|
||||
dev = ["black==25.1.0", "pytest==8.4.1", "ruff==0.12.2"]
|
||||
|
||||
[tool.black]
|
||||
line-length = 80
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 80
|
||||
lint.select = ["ALL"]
|
||||
lint.ignore = ["D100", "D104"]
|
||||
Reference in New Issue
Block a user