-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (92 loc) · 2.65 KB
/
Copy pathpyproject.toml
File metadata and controls
100 lines (92 loc) · 2.65 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# Rename to stable version
# This is stable version
[build-system]
requires = ["setuptools>=82.0.1"]
build-backend = "setuptools.build_meta"
[project]
name = "je_load_density"
version = "0.0.72"
authors = [
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
]
description = "Load & Stress Automation Freamework"
requires-python = ">=3.10"
license-files = ["LICENSE"]
dependencies = [
"locust",
"defusedxml>=0.7.1",
]
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/LoadDensity"
Documentation = "https://loaddensity.readthedocs.io/en/latest/"
Code = "https://github.com/Intergration-Automation-Testing/LoadDensity"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools.packages]
find = { namespaces = false }
[project.optional-dependencies]
gui = ["PySide6==6.11.0", "qt-material"]
websocket = ["websocket-client>=1.6"]
grpc = ["grpcio>=1.60", "protobuf>=4.25"]
mqtt = ["paho-mqtt>=2.0"]
redis = ["redis>=5.0"]
kafka = ["kafka-python>=2.0"]
sql = ["sqlalchemy>=2.0"]
mongo = ["pymongo>=4.6"]
http2 = ["httpx[http2]>=0.27"]
prometheus = ["prometheus-client>=0.19"]
opentelemetry = [
"opentelemetry-api>=1.24",
"opentelemetry-sdk>=1.24",
"opentelemetry-exporter-otlp-proto-grpc>=1.24",
]
metrics = [
"prometheus-client>=0.19",
"opentelemetry-api>=1.24",
"opentelemetry-sdk>=1.24",
"opentelemetry-exporter-otlp-proto-grpc>=1.24",
]
charts = ["matplotlib>=3.8"]
yaml = ["pyyaml>=6.0"]
auth = ["cryptography>=42.0"]
reliability = ["psutil>=5.9"]
faker = ["faker>=24.0"]
mcp = ["mcp>=1.0"]
all = [
"PySide6==6.11.0", "qt-material",
"websocket-client>=1.6",
"grpcio>=1.60", "protobuf>=4.25",
"paho-mqtt>=2.0",
"redis>=5.0",
"kafka-python>=2.0",
"sqlalchemy>=2.0",
"pymongo>=4.6",
"httpx[http2]>=0.27",
"prometheus-client>=0.19",
"opentelemetry-api>=1.24",
"opentelemetry-sdk>=1.24",
"opentelemetry-exporter-otlp-proto-grpc>=1.24",
"matplotlib>=3.8",
"pyyaml>=6.0",
"cryptography>=42.0",
"psutil>=5.9",
"faker>=24.0",
"mcp>=1.0",
]
[project.scripts]
loaddensity = "je_load_density.__main__:main"
loaddensity-mcp = "je_load_density.mcp_server.__main__:main"
loaddensity-lsp = "je_load_density.action_lsp.__main__:main"
[tool.bandit]
exclude_dirs = ["test", "tests", ".venv", "build", "dist"]
[tool.bandit.assert_used]
skips = ["**/test_*.py", "**/*_test.py", "**/conftest.py"]