-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
62 lines (53 loc) · 1.74 KB
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
# Rename to build stable version
# This is stable version
[build-system]
requires = ["setuptools>=82.0.1"]
build-backend = "setuptools.build_meta"
[project]
name = "je_api_testka"
version = "0.0.141"
authors = [
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
]
description = "Requests Automation Framework"
requires-python = ">=3.10"
license-files = ["LICENSE"]
dependencies = [
"requests", "Flask", "httpx", "defusedxml"
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Development Status :: 2 - Pre-Alpha",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
"Environment :: X11 Applications",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/Intergration-Automation-Testing/APITestka"
Documentation = "https://apitestka.readthedocs.io/en/latest/"
Code = "https://github.com/Intergration-Automation-Testing/APITestka"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools.packages]
find = { namespaces = false }
[project.scripts]
apitestka = "je_api_testka.cli.cli_main:main"
apitestka-mcp = "je_api_testka.mcp_server.server:main"
[project.entry-points."pytest11"]
apitestka = "je_api_testka.pytest_plugin.plugin"
[project.optional-dependencies]
gui = ["PySide6==6.11.0", "qt-material"]
websocket = ["websockets>=12.0"]
schema = ["jsonschema>=4.0", "jsonpath-ng>=1.6"]
security = ["pyjwt>=2.8", "botocore>=1.34"]
otel = ["opentelemetry-api>=1.25", "opentelemetry-sdk>=1.25"]
mcp = ["mcp>=1.0"]
[tool.pytest.ini_options]
testpaths = ["test"]
asyncio_mode = "auto"
timeout = 30
[tool.bandit]
# Test code uses assert by design (pytest); see CLAUDE.md "Test Code Exemptions".
exclude_dirs = ["test", "tests", "build", "dist", ".venv", "venv"]