-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (47 loc) · 1.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
# Rename to build stable version
# This is stable version
[build-system]
requires = ["setuptools>=82.0.1"]
build-backend = "setuptools.build_meta"
[project]
name = "pybreeze"
version = "1.0.23"
authors = [
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
]
description = "IDE for multi automation"
requires-python = ">=3.10"
license-files = ["LICENSE"]
dependencies = [
"je-editor", "je_auto_control", "je_web_runner",
"je_load_density", "je_api_testka", "je-mail-thunder",
"automation-file", "PySide6==6.11.0", "test_pioneer", "paramiko",
"jupyterlab",
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Development Status :: 4 - Beta",
"Environment :: Win32 (MS Windows)",
"Environment :: MacOS X",
"Environment :: X11 Applications",
"Operating System :: OS Independent"
]
[project.urls]
Homepage = "https://github.com/Intergration-Automation-Testing/AutomationEditor"
Code = "https://github.com/Intergration-Automation-Testing/AutomationEditor"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools.packages]
find = { namespaces = false }
[tool.bandit]
# Codacy / SonarCloud run Bandit across the tree; tests use `assert` intentionally
# (pytest relies on it), and subprocess is a required dependency of the IDE's
# process-executor layer. Callsites that genuinely need per-line review carry an
# inline `# nosec` annotation with justification.
exclude_dirs = ["test", "tests"]
skips = ["B101", "B404"]