30 lines
571 B
TOML
30 lines
571 B
TOML
[tool.poetry]
|
|
name = "fast-api"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["dtomlinson <dtomlinson@panaetius.co.uk>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
fastapi = "^0.48.0"
|
|
jinja2 = "^2.11"
|
|
requests = "^2.22"
|
|
aiofiles = "^0.4.0"
|
|
uvicorn = "^0.11.2"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^3.0"
|
|
autopep8 = "^1.5"
|
|
pudb = "^2019.2"
|
|
McCabe = "^0.6.1"
|
|
YAPF = "^0.29.0"
|
|
pydocstyle = "^5.0"
|
|
Pyflakes = "^2.1"
|
|
Rope = "^0.16.0"
|
|
python-language-server = "^0.31.8"
|
|
pycodestyle = "^2.5"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|