Spaces:
Sleeping
Sleeping
chore: update pyproject.toml and requirements.txt with project metadata and comments
Browse files- pyproject.toml +4 -0
- requirements.txt +3 -0
pyproject.toml
CHANGED
|
@@ -1,5 +1,9 @@
|
|
| 1 |
# CrownCode Backend - Linting and Formatting Configuration
|
| 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
[tool.black]
|
| 4 |
line-length = 100
|
| 5 |
target-version = ['py311']
|
|
|
|
| 1 |
# CrownCode Backend - Linting and Formatting Configuration
|
| 2 |
|
| 3 |
+
[project]
|
| 4 |
+
name = "crowncode-backend"
|
| 5 |
+
requires-python = ">=3.11"
|
| 6 |
+
|
| 7 |
[tool.black]
|
| 8 |
line-length = 100
|
| 9 |
target-version = ['py311']
|
requirements.txt
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# === Core Framework ===
|
| 2 |
fastapi>=0.103.0,<0.104.0
|
| 3 |
uvicorn[standard]>=0.23.2,<0.24.0
|
|
|
|
| 1 |
+
# Requires Python >= 3.11 (3.9 is EOL since Oct 2025)
|
| 2 |
+
# Production uses python:3.11-slim Docker image
|
| 3 |
+
|
| 4 |
# === Core Framework ===
|
| 5 |
fastapi>=0.103.0,<0.104.0
|
| 6 |
uvicorn[standard]>=0.23.2,<0.24.0
|