Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 17 additions & 6 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,14 @@ documentation available at [https://python-jeautocontrol.readthedocs.io/en/lates
## install

```
# make sure you have install cmake libssl-dev
pip install je_auto_control
```

```

```

## Info

* requirement
Expand Down
2 changes: 1 addition & 1 deletion dev_setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="je_auto_control_dev",
version="0.0.17",
version="0.0.18",
author="JE-Chen",
author_email="[email protected]",
description="auto testing",
Expand Down
1 change: 0 additions & 1 deletion je_auto_control/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ def preprocess_execute_files(file_path: str):
parser.add_argument("-d", "--execute_dir", type=str, help="choose dir include action file to execute")
args = parser.parse_args()
args = vars(args)
print(args)
for key, value in args.items():
if value is not None:
argparse_event_dict.get(key)(value)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@


def create_dir(dir_name: str):
"""
:param dir_name: create dir use dir name
:return: None
"""
Path(dir_name).mkdir(
parents=True,
exist_ok=True
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="je_auto_control",
version="0.0.88",
version="0.0.89",
author="JE-Chen",
author_email="[email protected]",
description="auto testing",
Expand Down