pyproject.toml 815 B

12345678910111213141516171819202122232425262728293031323334
  1. [project]
  2. name = "peft-platform-backend"
  3. version = "0.1.0"
  4. description = "四川路桥模型微调平台"
  5. requires-python = ">=3.10"
  6. dependencies = [
  7. "fastapi>=0.115.0",
  8. "uvicorn[standard]>=0.30.0",
  9. "pydantic>=2.0",
  10. "pydantic-settings>=2.0",
  11. "python-dotenv>=1.0",
  12. "sqlalchemy[asyncio]>=2.0",
  13. "aiosqlite>=0.20.0",
  14. "asyncpg>=0.29.0",
  15. "alembic>=1.13.0",
  16. "python-multipart>=0.0.9",
  17. "websockets>=12.0",
  18. "scipy>=1.14.0",
  19. "scikit-learn>=1.5.0",
  20. "pillow>=10.4.0",
  21. "pandas>=2.2.0",
  22. "pyarrow>=17.0.0",
  23. "addict>=2.4.0",
  24. "modelscope>=1.15.0,<1.18.0",
  25. "oss2>=2.18.0",
  26. "datasets>=3.0.0",
  27. "huggingface_hub",
  28. "aiohttp>=3.9.0,<3.11.0",
  29. "pyjwt>=2.8.0",
  30. "httpx>=0.27.0",
  31. ]
  32. [tool.uv]
  33. index-url = "https://mirrors.aliyun.com/pypi/simple/"