Created
June 17, 2022 08:52
-
-
Save tusharsnx/8615918e33f79015462ffa1b67448c18 to your computer and use it in GitHub Desktop.
pyproject.toml content after installation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "personal-website" | |
version = "0.1.0" | |
description = "backend for personal website" | |
authors = ["Tushar Singh <tusharvickey1999@gmail.com>"] | |
[tool.poetry.dependencies] | |
python = "^3.10" | |
fastapi = "^0.73.0" | |
aiofiles = "^0.8.0" | |
aiohttp = "^3.8.1" | |
uvicorn = "^0.17.4" | |
motor = {extras = ["srv"], version = "^3.0.0"} | |
[tool.poetry.dev-dependencies] | |
black = "^22.1.0" | |
flake8 = "^4.0.1" | |
mypy = "^0.931" | |
[build-system] | |
requires = ["poetry-core>=1.0.0"] | |
build-backend = "poetry.core.masonry.api" | |
[tool.black] | |
line-length = "100" | |
[tool.isort] | |
profile = "black" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment