-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (56 loc) · 1.14 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
[project]
name = "impact-stack-rest"
description = "REST API client classes for inter-services communication in Impact Stack."
dependencies = [
"requests",
]
authors = [
{name = "Roman Zimmermann", email = "roman@more-onion.com"},
]
readme = "README.md"
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"black",
"flask",
"isort",
"pre-commit",
"pydocstyle[toml] >= 6",
"pylint",
"pytest",
"pytest-cov",
"requests-mock",
"twine",
]
[build-system]
requires = [
"setuptools>=45",
"setuptools-scm[toml]>=6.2",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.black]
line-length = 100
[tool.coverage.run]
source = ["impact_stack"]
relative_files = true
[tool.coverage.report]
fail_under = 98
[tool.isort]
profile = "black"
line_length = 100
combine_as_imports = true
known_local_folder = ["impact_stack.rest"]
[tool.pydocstyle]
convention = "google"
[tool.pylint.basic]
good-names = ["db"]
[tool.pylint.format]
max-line-length = "100"
[tool.pytest.ini_options]
addopts = "--cov --cov-report=term --cov-report=xml --junitxml=pytest-junit.xml"
python_classes = [
"*Test",
"Test*",
]