[READ-ONLY] Mirror of https://github.com/shuuji3/fastapi-playground. ⚡ FastAPI Playground fastapi.tiangolo.com/
0

Configure Feed

Select the types of activity you want to include in your feed.

fastapi-playground / pyproject.toml
375 B 17 lines
1[tool.poetry] 2name = "fastapi-playground" 3version = "0.1.0" 4description = "FastAPI Playground" 5authors = ["TAKAHASHI Shuuji <shuuji3@gmail.com>"] 6 7[tool.poetry.dependencies] 8python = "^3.8" 9fastapi = "^0.78.0" 10uvicorn = "^0.17.6" 11requests = "^2.27.1" 12 13[tool.poetry.dev-dependencies] 14 15[build-system] 16requires = ["poetry-core>=1.0.0"] 17build-backend = "poetry.core.masonry.api"