-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.05 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
[build-system]
requires = [ "poetry>=0.12",]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "pyparam"
version = "0.5.4"
description = "Powerful parameter processing."
authors = [ "pwwang <[email protected]>",]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/pwwang/pyparam"
repository = "https://github.com/pwwang/pyparam"
[tool.poetry.dependencies]
python = "^3.7"
python-simpleconf = "^0.5"
rich = "^13"
diot = "^0.1"
[tool.poetry.dev-dependencies]
pytest = "^7"
pytest-cov = "^4"
python-simpleconf = {extras = ["all"], version = "^0.5"}
[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=pyparam --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?$'