-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 1.63 KB
/
pyproject.toml
File metadata and controls
83 lines (73 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[tool.black]
line-length = 88
target-version = ["py38"]
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.venv
| \.vscode
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
combine_as_imports = true
default_section = "LOCALFOLDER"
force_grid_wrap = false
include_trailing_comma = true
known_first_party = """
aioapi
example
"""
known_third_party = """
aiohttp
pydantic
pytest
"""
line_length = 88
multi_line_output = 3
not_skip = "__init__.py"
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
skip = ".eggs,.venv,venv"
[tool.poetry]
name = "aioapi"
version = "0.3.0-alpha.2"
description = "Yet another way to build APIs using AIOHTTP framework"
authors = [
"Nikita Grishko <gr1n@protonmail.com>"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/Gr1N/aioapi"
repository = "https://github.com/Gr1N/aioapi"
documentation = "https://gr1n.github.io/aioapi"
keywords = ["asyncio", "aiohttp", "api", "typing"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.8"
aiohttp = ">=3.6"
pydantic = ">=1.0"
[tool.poetry.dev-dependencies]
black = { version = ">=19.10b0", allow-prereleases = true }
codecov = ">=2.0.15"
flake8 = ">=3.7.7"
flake8-bugbear = ">=18.8.0"
isort = { version = ">=4.3.15", extras = ["pyproject"] }
mkdocs-material = ">=4.1.1"
mypy = ">=0.761"
pytest = ">=4.3.0"
pytest-aiohttp = ">=0.3.0"
pytest-cov = ">=2.6.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"