dockerfiles/uwsgi-nginx/pyproject.toml

22 lines
572 B
TOML

[tool.poetry]
name = "uwsgi-nginx-docker"
version = "0.1.0"
description = "Docker image with uWSGI and Nginx for web applications in Python 3.6 and above and Python 2.7 (as Flask) in a single container. Optionally with Alpine Linux."
authors = ["Sebastián Ramírez <tiangolo@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.6"
docker = "^4.2.0"
pytest = "^5.4.1"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
isort = "^4.3.21"
autoflake = "^1.3.1"
mypy = "^0.770"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"