Skip to content

Instantly share code, notes, and snippets.

@ktsibikov
Created December 9, 2019 18:42
Show Gist options
  • Save ktsibikov/c047dec8000bbf622162ebcad0230c54 to your computer and use it in GitHub Desktop.
Save ktsibikov/c047dec8000bbf622162ebcad0230c54 to your computer and use it in GitHub Desktop.
[tool.poetry]
name = "auth"
version = "0.1.0"
description = "Authorization helpers"
authors = ["k <k@google.com>"]
[tool.poetry.dependencies]
python = "^3.7"
aiohttp = {version = "^3.6", optional = true}
httpx = "^0.8.0"
pydantic = "^1.2"
[tool.poetry.dev-dependencies]
black = { version = ">=19.3", allows-prereleases = true }
flake8 = ">=3.7.9"
flake8-bugbear = ">=19.8.0"
isort = { version = ">=4.3.21", extras = ["pyproject"] }
mypy=">=0.750"
pytest = "~5.0"
pytest-asyncio = "^0.10.0"
pytest-cov = "^2.7"
pytest-mock = "^1.11"
pytest-mockservers = "^0.5.0"
[tool.poetry.extras]
aiohttp = ["aiohttp"]
[[tool.poetry.source]]
name = "default"
url = "https://pypi.org/simple/"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment