-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
69 lines (62 loc) · 1.64 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
[project]
name = "chaostoolkit-humio"
version = "0.6.0"
description = "Reliably CLI"
authors = [
{name = "Chaos Toolkit", email = "contact@chaostoolkit.org"},
]
requires-python = ">=3.7"
readme = "README.md"
license = {text = "Apache-2.0"}
dependencies = [
"chaostoolkit-lib>=1.33.1",
"requests"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: Freely Distributable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.optional-dependencies]
dev = [
"black>=22.10.0",
"isort>=5.10.1",
"pytest>=7.2.0",
"coverage>=6.5.0",
"pytest-cov>=4.0.0",
"pytest-sugar>=0.9.5",
"types-requests",
"requests_mock",
"ruff",
"mypy"
]
[build-system]
requires = ["pdm-pep517>=1.0.0"]
build-backend = "pdm.pep517.api"
[tool]
[tool.setuptools.packages.find]
where = ["."]
[tool.black]
color = true
line-length = 80
[tool.isort]
line_length = 80
known_first_party = 'chaoshumio'
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
[tool.pytest.ini_options]
minversion = "6.0"
testpaths = ["tests"]
addopts = "-v -rxs --cov chaoshumio --cov-report term-missing:skip-covered -p no:warnings"