選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pyproject.toml 513B

12345678910111213141516171819202122232425262728
  1. [project]
  2. name = "gvisor-sandbox"
  3. version = "0.1.0"
  4. description = "Add your description here"
  5. readme = "README.md"
  6. requires-python = ">=3.10"
  7. dependencies = [
  8. "fastapi>=0.115.12",
  9. "httpx>=0.28.1",
  10. "pydantic>=2.11.4",
  11. "requests>=2.32.3",
  12. "slowapi>=0.1.9",
  13. "uvicorn>=0.34.2",
  14. ]
  15. [[tool.uv.index]]
  16. url = "https://pypi.tuna.tsinghua.edu.cn/simple"
  17. [dependency-groups]
  18. dev = [
  19. "basedpyright>=1.29.1",
  20. ]
  21. [tool.ruff]
  22. line-length = 200
  23. [tool.ruff.lint]
  24. extend-select = ["C4", "SIM", "TCH"]