generated from pwwang/pyparam
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
46 lines (39 loc) · 1.03 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
[build-system]
requires = [ "poetry>=1.0",]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "diot"
version = "0.2.3"
description = "Python dictionary with dot notation."
authors = [ "pwwang <[email protected]>",]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/pwwang/diot"
repository = "https://github.com/pwwang/diot"
[tool.poetry.dependencies]
python = "^3.7"
inflection = "^0.5"
[tool.poetry.build]
generate-setup-file = true
[tool.poetry.dev-dependencies]
pytest = "^7"
pytest-cov = "^4"
pyyaml = "^6"
rtoml = "^0.8"
[tool.mypy]
ignore_missing_imports = true
allow_redefinition = true
disable_error_code = ["attr-defined", "no-redef", "union-attr"]
show_error_codes = true
strict_optional = false
[tool.pytest.ini_options]
addopts = "-vv --cov-config=.coveragerc --cov=diot --cov-report xml:.coverage.xml --cov-report term-missing"
filterwarnings = [
#"error"
]
console_output_style = "progress"
junit_family = "xunit1"
[tool.black]
line-length = 79
target-version = ['py37', 'py38', 'py39']
include = '\.pyi?$'