This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
71 lines (61 loc) · 1.7 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
[tool.poetry]
name = "sanic-json-logging"
version = "0.0.0"
description = "Simple library to emit json formatted logs to stdout"
authors = ["Terry Cain <[email protected]>"]
license = "Apache-2.0"
readme = "README.rst"
homepage = "https://github.com/terrycain/sanic-json-logging"
repository = "https://github.com/terrycain/sanic-json-logging"
keywords = ["sanic", "json", "logging"]
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
[tool.poetry.dependencies]
python = "^3.8"
sanic = ">=21.6.0"
boltons = { version = ">=21.0.0", optional = true }
[tool.poetry.dev-dependencies]
black = "21.6b0"
isort = "*"
pytest-asyncio = "*"
flake8 = "*"
pytest = "*"
sanic-testing = "*"
pytest-cov = "*"
mypy = "*"
boltons = "*"
[tool.poetry.extras]
extratb = ["boltons"]
[build-system]
requires = ["poetry>=0.12", "poetry-dynamic-versioning"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
skip_gitignore = false
lines_between_types = 1
[tool.mypy]
disallow_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_decorators = true
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.poetry-dynamic-versioning]
enable = true
[tool.poetry-dynamic-versioning.substitution]
files = ["sanic_json_logging/__init__.py"]