Update pyproject.toml

This commit is contained in:
Alex Root Junior 2020-11-18 17:00:54 +02:00
parent d3b488e16d
commit e0987f327c
2 changed files with 16 additions and 456 deletions

View file

@ -69,12 +69,11 @@ aiohttp-socks = "^0.3.4"
pre-commit = "^2.3.0"
packaging = "^20.3"
typing-extensions = "^3.7.4"
poetry = "^1.0.5"
furo = "^2020.11.15-beta.17"
sphinx = "^3.1.0"
sphinx-intl = "^2.0.1"
sphinx-autobuild = "^2020.9.1"
sphinx-copybutton = "^0.3.1"
furo = "^2020.11.15-beta.17"
[tool.poetry.extras]
fast = ["uvloop"]
@ -82,7 +81,7 @@ proxy = ["aiohttp-socks"]
[tool.black]
line-length = 99
target-version = ['py37', 'py38']
target-version = ['py37', 'py38', 'py39']
exclude = '''
(
\.eggs
@ -101,8 +100,18 @@ include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 99
known_third_party = ["aiofiles", "aiohttp", "aiohttp_socks", "aresponses", "async_lru", "packaging", "pkg_resources", "pydantic", "pytest"]
known_third_party = [
"aiofiles",
"aiohttp",
"aiohttp_socks",
"aresponses",
"async_lru",
"packaging",
"pkg_resources",
"pydantic",
"pytest"
]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"