You've already forked DataMate
* refactor: remove db table management from LS adapter (mv to scripts later); change adapter to use the same MySQL DB as other modules. * refactor: Rename LS Adapter module to datamate-python
23 lines
942 B
Plaintext
23 lines
942 B
Plaintext
fastapi==0.118.2
|
|
uvicorn[standard]==0.37.0
|
|
sqlalchemy==2.0.43
|
|
|
|
# 数据库驱动 (MySQL优先)
|
|
aiomysql==0.2.0 # MySQL异步驱动
|
|
pymysql==1.1.2 # MySQL同步驱动(用于迁移)
|
|
# PostgreSQL驱动(可选,备用)
|
|
asyncpg==0.30.0 # PostgreSQL异步驱动
|
|
psycopg2-binary==2.9.10 # PostgreSQL同步驱动(用于迁移)
|
|
aiosqlite==0.19.0 # SQLite异步驱动(开发备用)
|
|
|
|
alembic==1.16.5
|
|
|
|
httpx==0.28.1
|
|
cryptography
|
|
|
|
pydantic==2.12.0
|
|
pydantic-settings==2.11.0
|
|
python-multipart==0.0.20
|
|
python-dotenv==1.1.1
|
|
|
|
# label-studio-sdk==2.0.11 |