Skip to content

Commit c2aedda

Browse files
authored
Merge pull request #90 from Intergration-Automation-Testing/dev
Refactor project
2 parents 3f1ec94 + 8f79d4a commit c2aedda

File tree

5 files changed

+58
-38
lines changed

5 files changed

+58
-38
lines changed

.idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/workspace.xml

+4-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+17-15
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
11
### AutoControl
2+
3+
[![Downloads](https://static.pepy.tech/badge/je-auto-control)](https://pepy.tech/project/je-auto-control)
4+
5+
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/db0f6e626a614f67bf2b6b1f54325a24)](https://www.codacy.com/gh/JE-Chen/AutoControl/dashboard?utm_source=github.com&utm_medium=referral&utm_content=JE-Chen/AutoControl&utm_campaign=Badge_Grade)
6+
7+
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/Intergration-Automation-Testing/AutoControl/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/Intergration-Automation-Testing/AutoControl/tree/main)
8+
9+
[![AutoControl GitHub Actions Dev](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_dev.yml/badge.svg)](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_dev.yml)
10+
11+
[![AutoControl GitHub Actions Stable](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_stable.yml/badge.svg)](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_stable.yml)
12+
13+
### Documentation
14+
15+
[![Documentation Status](https://readthedocs.org/projects/autocontrol/badge/?version=latest)](https://autocontrol.readthedocs.io/en/latest/?badge=latest)
16+
17+
---
18+
219
> Project Kanban \
320
> https://github.com/orgs/Intergration-Automation-Testing/projects/2 \
421
> Image & Coordinate based GUI Automation \
@@ -32,21 +49,6 @@
3249
3350
---
3451

35-
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/db0f6e626a614f67bf2b6b1f54325a24)](https://www.codacy.com/gh/JE-Chen/AutoControl/dashboard?utm_source=github.com&utm_medium=referral&utm_content=JE-Chen/AutoControl&utm_campaign=Badge_Grade)
36-
37-
[![CircleCI](https://dl.circleci.com/status-badge/img/gh/Integrated-Testing-Environment/AutoControl/tree/main.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/Integrated-Testing-Environment/AutoControl/tree/main)
38-
39-
[![AutoControl GitHub Actions Dev](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_dev.yml/badge.svg)](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_dev.yml)
40-
41-
[![AutoControl GitHub Actions Stable](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_stable.yml/badge.svg)](https://github.com/JE-Chen/AutoControl/actions/workflows/auto-control-github-actions_stable.yml)
42-
43-
### Documentation
44-
45-
[![Documentation Status](https://readthedocs.org/projects/autocontrol/badge/?version=latest)](https://autocontrol.readthedocs.io/en/latest/?badge=latest)
46-
47-
documentation available
48-
at [https://python-jeautocontrol.readthedocs.io/en/latest/](https://autocontrol.readthedocs.io/en/latest/)
49-
5052
## install
5153

5254
```

stable.toml renamed to dev.toml

+18-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
# Rename to build stable version
2-
# This is stable version
1+
# Rename to build dev version
2+
# This is dev version
33
[build-system]
4-
requires = ["setuptools>=61.0"]
4+
requires = ["setuptools"]
55
build-backend = "setuptools.build_meta"
66

77
[project]
8-
name = "je_auto_control"
9-
version = "0.0.136"
8+
name = "je_auto_control_dev"
9+
version = "0.0.73"
1010
authors = [
11-
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
11+
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]
13-
description = "GUI Testing Automation Framework"
14-
readme = { file = "README.md", content-type = "text/markdown" }
13+
description = "GUI Automation Framework"
1514
requires-python = ">=3.8"
1615
license = { text = "MIT" }
1716
dependencies = [
@@ -23,7 +22,7 @@ dependencies = [
2322
"python-Xlib;platform_system=='Linux'"
2423
]
2524
classifiers = [
26-
"Programming Language :: Python :: 3.7",
25+
"Programming Language :: Python :: 3.8",
2726
"Development Status :: 2 - Pre-Alpha",
2827
"Environment :: Win32 (MS Windows)",
2928
"Environment :: MacOS X",
@@ -33,7 +32,16 @@ classifiers = [
3332
]
3433

3534
[project.urls]
36-
"Homepage" = "https://github.com/JE-Chen/AutoControl"
35+
Homepage = "https://github.com/Intergration-Automation-Testing/AutoControl"
36+
Documentation = "https://autocontrol.readthedocs.io/en/latest/"
37+
Code = "https://github.com/Intergration-Automation-Testing/AutoControl"
38+
39+
[project.readme]
40+
file = "README.md"
41+
content-type = "text/markdown"
42+
43+
[tool.setuptools]
44+
license-files = ["LICENSE"]
3745

3846
[tool.setuptools.packages]
3947
find = { namespaces = false }

pyproject.toml

+18-10
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
# Rename to build dev version
2-
# This is dev version
1+
# Rename to build stable version
2+
# This is stable version
33
[build-system]
4-
requires = ["setuptools"]
4+
requires = ["setuptools>=61.0"]
55
build-backend = "setuptools.build_meta"
66

77
[project]
8-
name = "je_auto_control_dev"
9-
version = "0.0.72"
8+
name = "je_auto_control"
9+
version = "0.0.137"
1010
authors = [
11-
{ name = "JE-Chen", email = "zenmailman@gmail.com" },
11+
{ name = "JE-Chen", email = "jechenmailman@gmail.com" },
1212
]
13-
description = "GUI Testing Automation Framework"
14-
readme = { file = "README.md", content-type = "text/markdown" }
13+
description = "GUI Automation Framework"
1514
requires-python = ">=3.8"
1615
license = { text = "MIT" }
1716
dependencies = [
@@ -23,7 +22,7 @@ dependencies = [
2322
"python-Xlib;platform_system=='Linux'"
2423
]
2524
classifiers = [
26-
"Programming Language :: Python :: 3.7",
25+
"Programming Language :: Python :: 3.8",
2726
"Development Status :: 2 - Pre-Alpha",
2827
"Environment :: Win32 (MS Windows)",
2928
"Environment :: MacOS X",
@@ -33,7 +32,16 @@ classifiers = [
3332
]
3433

3534
[project.urls]
36-
"Homepage" = "https://github.com/JE-Chen/AutoControl"
35+
Homepage = "https://github.com/Intergration-Automation-Testing/AutoControl"
36+
Documentation = "https://autocontrol.readthedocs.io/en/latest/"
37+
Code = "https://github.com/Intergration-Automation-Testing/AutoControl"
38+
39+
[project.readme]
40+
file = "README.md"
41+
content-type = "text/markdown"
42+
43+
[tool.setuptools]
44+
license-files = ["LICENSE"]
3745

3846
[tool.setuptools.packages]
3947
find = { namespaces = false }

0 commit comments

Comments
 (0)