omnitest 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: omnitest
3
+ Version: 0.1.0
4
+ Summary: One platform for everything
5
+ Author-email: Manikandan Parasuraman <manikandan.p.learning@gmail.com>
6
+ License: MIT
7
+ Keywords: automation,testing,playwright,selenium,qa
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+
14
+ # OmniTest
15
+
16
+ > One platform for everything.
17
+
18
+ OmniTest is an open-source automation testing platform designed to unify multiple testing disciplines under a single Python library.
19
+
20
+ ## Vision
21
+
22
+ - UI Automation
23
+ - API Testing
24
+ - Performance Testing
25
+ - Security Testing
26
+ - Reliability Testing
27
+
28
+ ## Installation
29
+
30
+ ```bash
31
+ pip install omnitest
32
+ ```
33
+
34
+ ## Usage
35
+
36
+ ```python
37
+ from omnitest import hello
38
+
39
+ print(hello())
40
+ ```
@@ -0,0 +1,27 @@
1
+ # OmniTest
2
+
3
+ > One platform for everything.
4
+
5
+ OmniTest is an open-source automation testing platform designed to unify multiple testing disciplines under a single Python library.
6
+
7
+ ## Vision
8
+
9
+ - UI Automation
10
+ - API Testing
11
+ - Performance Testing
12
+ - Security Testing
13
+ - Reliability Testing
14
+
15
+ ## Installation
16
+
17
+ ```bash
18
+ pip install omnitest
19
+ ```
20
+
21
+ ## Usage
22
+
23
+ ```python
24
+ from omnitest import hello
25
+
26
+ print(hello())
27
+ ```
@@ -0,0 +1,37 @@
1
+ [build-system]
2
+ requires = ["setuptools>=80", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "omnitest"
7
+ version = "0.1.0"
8
+ description = "One platform for everything"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = {text = "MIT"}
12
+
13
+ authors = [
14
+ {name = "Manikandan Parasuraman", email = "manikandan.p.learning@gmail.com"}
15
+ ]
16
+
17
+ keywords = [
18
+ "automation",
19
+ "testing",
20
+ "playwright",
21
+ "selenium",
22
+ "qa"
23
+ ]
24
+
25
+ classifiers = [
26
+ "Programming Language :: Python :: 3",
27
+ "Operating System :: OS Independent",
28
+ "License :: OSI Approved :: MIT License"
29
+ ]
30
+
31
+ dependencies = []
32
+
33
+ [tool.setuptools]
34
+ package-dir = {"" = "src"}
35
+
36
+ [tool.setuptools.packages.find]
37
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,7 @@
1
+ """Public package interface for OmniTest."""
2
+
3
+ from .hello import hello
4
+
5
+ __version__ = "0.1.0"
6
+
7
+ __all__ = ["hello"]
@@ -0,0 +1,6 @@
1
+ """Provide greeting helpers for OmniTest."""
2
+
3
+
4
+ def hello():
5
+ """Return the package greeting."""
6
+ return "Hello from OmniTest!"
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.4
2
+ Name: omnitest
3
+ Version: 0.1.0
4
+ Summary: One platform for everything
5
+ Author-email: Manikandan Parasuraman <manikandan.p.learning@gmail.com>
6
+ License: MIT
7
+ Keywords: automation,testing,playwright,selenium,qa
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Requires-Python: >=3.10
12
+ Description-Content-Type: text/markdown
13
+
14
+ # OmniTest
15
+
16
+ > One platform for everything.
17
+
18
+ OmniTest is an open-source automation testing platform designed to unify multiple testing disciplines under a single Python library.
19
+
20
+ ## Vision
21
+
22
+ - UI Automation
23
+ - API Testing
24
+ - Performance Testing
25
+ - Security Testing
26
+ - Reliability Testing
27
+
28
+ ## Installation
29
+
30
+ ```bash
31
+ pip install omnitest
32
+ ```
33
+
34
+ ## Usage
35
+
36
+ ```python
37
+ from omnitest import hello
38
+
39
+ print(hello())
40
+ ```
@@ -0,0 +1,9 @@
1
+ README.md
2
+ pyproject.toml
3
+ src/omnitest/__init__.py
4
+ src/omnitest/hello.py
5
+ src/omnitest.egg-info/PKG-INFO
6
+ src/omnitest.egg-info/SOURCES.txt
7
+ src/omnitest.egg-info/dependency_links.txt
8
+ src/omnitest.egg-info/top_level.txt
9
+ tests/test_hello.py
@@ -0,0 +1 @@
1
+ omnitest
@@ -0,0 +1,8 @@
1
+ """Tests for the hello module."""
2
+
3
+ from omnitest import hello
4
+
5
+
6
+ def test_hello():
7
+ """Verify the package greeting matches the expected string."""
8
+ assert hello() == "Hello from OmniTest!"