-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
executable file
·53 lines (45 loc) · 1.17 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
[tool.poetry]
name = "figga"
version = "0.3.0"
description = "A simple configuration manager for Python."
authors = ["Berislav Lopac <[email protected]>"]
readme = 'README.md'
repository = "https://github.com/berislavlopac/figga"
homepage = "https://github.com/berislavlopac/figga"
keywords = ["configuration", "config"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.dev-dependencies]
pytest = "^5"
pytest-cov = "^2.8.1"
pytest-flake8 = "^1.0.4"
pytest-mypy = "^0.6.1"
coverage = {extras = ["toml"], version = "^5.0.4"}
tox = "^3.23.0"
mypy = "^0.910"
black = "^21.10b0"
pydocstyle = "^6.1.1"
toml = "^0.10.2"
[tool.black]
line-length = 96
target-version = ['py37', 'py38', 'py39']
verbose = false
skip-string-normalization = false
[tool.coverage.run]
source = [ "figga/" ]
omit = [ "*/tests/*" ]
[tool.coverage.report]
show_missing = true
fail_under = 90
exclude_lines = [ "pragma: no cover", "@abstract",]
[tool.pydocstyle]
add-ignore = "D104, D105, D107, D212, D401"
convention = "google"
match-dir = "^(?!tests).*"
[tool.mypy]
mypy_path = "figga/"
ignore_missing_imports = true
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"