-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
79 lines (70 loc) · 1.63 KB
/
pyproject.toml
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
[tool.poetry]
name = "gzip-utils"
version = "0.0.0"
description = "Package with diffrent gzip-util's"
license = "MIT"
authors = ["Idar Bergli <idar.bergli@protonmail.com>"]
maintainers = ["Idar Bergli <idar.bergli@protonmail.com>"]
readme = "README.md"
homepage = "https://github.com/Eossu/gzip-utils"
repository = "https://github.com/Eossu/gzip-utils"
keywords = ["gzip", "utils", "json"]
classifiers = [
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[tool.poetry.dependencies]
python = "^3.6"
importlib-metadata = {version = "^1.7.0", python = "<3.8"}
[tool.poetry.dev-dependencies]
pytest = "^5.2"
mypy = "^0.782"
flake8 = "^3.8.3"
black = "^19.10b0"
pytest-cov = "^2.10.0"
coverage = "^5.2"
pytest-xdist = "^1.32.0"
isort = "^5.0.6"
[tool.poetry.scripts]
[tool.coverage.paths]
source = ["src", "tests"]
[tool.coverage.run]
branch = true
source = ["starlette_aad"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[tool.isort]
line_length = 120
force_single_line = true
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
multi_line_output = 3
use_parentheses = true
skip_glob = ["*/setup.py"]
[tool.black]
line-length = 120
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"