Skip to content

Commit 35b7e8a

Browse files
committed
Rename project & folders
Rename project & folders
1 parent 5da7785 commit 35b7e8a

112 files changed

Lines changed: 163 additions & 163 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

automation_ide/__init__.py

Lines changed: 0 additions & 7 deletions
This file was deleted.

automation_ide/automation_editor_ui/extend_ai_gui/ai_gui_global_variable.py

Lines changed: 0 additions & 40 deletions
This file was deleted.

automation_ide/automation_editor_ui/extend_multi_language/update_language_dict.py

Lines changed: 0 additions & 8 deletions
This file was deleted.

stable.toml renamed to dev.toml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
# Rename to build stable version
2-
# This is stable version
1+
# Rename to dev version
2+
# This is dev version
33
[build-system]
44
requires = ["setuptools>=61.0"]
55
build-backend = "setuptools.build_meta"
66

77
[project]
8-
name = "PyBreeze"
9-
version = "1.0.4"
8+
name = "pybreeze_dev"
9+
version = "1.0.5"
1010
authors = [
1111
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]
1313
description = "AutomationEditor for multi automation"
1414
requires-python = ">=3.10"
1515
license-files = ["LICENSE"]
1616
dependencies = [
17-
"je-editor", "je_auto_control", "je_web_runner",
17+
"je_editor_dev", "je_auto_control", "je_web_runner",
1818
"je_load_density", "je_api_testka", "je-mail-thunder",
1919
"automation-file", "PySide6==6.10.2", "test_pioneer", "paramiko"
2020
]
@@ -35,5 +35,6 @@ Code = "https://github.com/Intergration-Automation-Testing/AutomationEditor"
3535
file = "README.md"
3636
content-type = "text/markdown"
3737

38+
3839
[tool.setuptools.packages]
3940
find = { namespaces = false }

exe/start_automation_editor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
from automation_ide import start_editor
1+
from pybreeze import start_editor
22

33
start_editor()

pybreeze/__init__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
from pybreeze.pybreeze_ui.editor_main.main_ui import AutomationEditor
2+
from pybreeze.pybreeze_ui.editor_main.main_ui import EDITOR_EXTEND_TAB
3+
from pybreeze.pybreeze_ui.editor_main.main_ui import start_editor
4+
5+
__all__ = [
6+
"start_editor", "AutomationEditor", "EDITOR_EXTEND_TAB"
7+
]
File renamed without changes.
File renamed without changes.

automation_ide/extend/mail_thunder_extend/mail_thunder_setting.py renamed to pybreeze/extend/mail_thunder_extend/mail_thunder_setting.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import sys
22
from email.mime.multipart import MIMEMultipart
33

4-
from automation_ide.utils.exception.exception_tags import send_html_exception_tag
5-
from automation_ide.utils.exception.exceptions import ITESendHtmlReportException
4+
from pybreeze.utils.exception.exception_tags import send_html_exception_tag
5+
from pybreeze.utils.exception.exceptions import ITESendHtmlReportException
66

77

88
def send_after_test(html_report_path: str = None) -> None:

0 commit comments

Comments
 (0)