-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
79 lines (67 loc) · 2.18 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
70
71
72
73
74
75
76
77
78
79
[tool.poetry]
name = "chk"
version = "0.5.0"
description = "Low-code API quality testing, and automation toolbox"
authors = ["Mahmudul Hasan <[email protected]>"]
license = "MPL-2.0"
readme = "README.md"
homepage = "https://chkware.com/"
repository = "https://github.com/chkware/cli"
documentation = "https://chkware.com/docs"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: MacOS",
"Operating System :: Microsoft",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: System :: Networking",
"Topic :: Terminals",
"Topic :: Text Processing",
"Topic :: Utilities",
]
exclude = ["tests", "tests.*", "docs", "docs.*"]
packages = [{ include = "chk" }]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/chkware/cli/issues"
"Ask a question" = "https://github.com/orgs/chkware/discussions/categories/q-a"
Twitter = "https://twitter.com/chkware"
[tool.poetry.dependencies]
python = "^3.13"
click = "^8.1.7"
pyyaml = "^6.0.2"
requests = "^2.32.3"
cerberus = "^1.3.5"
defusedxml = "^0.7.1"
xmltodict = "^0.14.2"
python-dotenv = "^1.0.1"
pydantic = "^2.10.4"
loguru = "^0.7.3"
jinja2 = "^3.1.4"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.4"
mypy = "^1.14.0"
icecream = "^2.1.3"
requests-mock = "^1.12.1"
pytest-cov = "^6.0.0"
ruff = "^0.8.4"
[tool.poetry.scripts]
chk = "chk.console.main:chk"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks]
test = "py.test -s"
clear-cache = "rm -rf .chkware_cache"
_requirements_root_ = "poetry export --output requirements.txt"
_requirements_test_ = "poetry export --output requirements-dev.txt --with test"
requirements = ["_requirements_root_", "_requirements_test_"]
fix-format = "ruff format --config ruff.toml chk"
fix-check = "ruff check --config ruff.toml chk"
fix = ["fix-check", "fix-format"]