Compare commits

...

3 Commits

Author SHA1 Message Date
31ccee105d add gitignore folder 2026-01-29 11:14:46 +07:00
a92081b9e8 remove unused deps 2026-01-29 11:14:27 +07:00
2e4d1993ba update requirements 2026-01-29 11:13:51 +07:00
3 changed files with 8 additions and 3 deletions

5
.gitignore vendored
View File

@ -18,4 +18,7 @@ logs/
style_temp/
services/styles/
cleansing_func.sql
cleansing_func.sql
__pycache__/
*.pyc

View File

@ -3,7 +3,6 @@ from fastapi import APIRouter, File, Form, UploadFile, Depends
from pydantic import BaseModel
from typing import Any, Dict, List, Optional
from services.upload_file.upload import handle_upload_file, handle_process_pdf, handle_to_postgis
from api.deps.role_dependency import require_role
from database.connection import engine
router = APIRouter()

View File

@ -13,4 +13,7 @@ python-dotenv==1.2.1
rapidfuzz==3.14.3
Requests==2.32.5
Shapely==2.1.2
SQLAlchemy==2.0.46
SQLAlchemy==2.0.46
asyncpg
psycopg2
python-multipart