omnitest 0.1.0__py3-none-any.whl

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.
omnitest/__init__.py ADDED
@@ -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"]
omnitest/hello.py ADDED
@@ -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,6 @@
1
+ omnitest/__init__.py,sha256=pskPrRI9DDXjicA9es48me9-HH9PjAPjyMq4pFkMYuY,115
2
+ omnitest/hello.py,sha256=Ezvw8OtJN6WdnPmrNju32j_20-5WmvFlDiM2b5N3Q8E,133
3
+ omnitest-0.1.0.dist-info/METADATA,sha256=XW27D3a9V5c9K8AumhmUUBDUePMzjheMHHlPh9-9HHg,837
4
+ omnitest-0.1.0.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
5
+ omnitest-0.1.0.dist-info/top_level.txt,sha256=EYbRgxy2bXEpV5CsE_qIGnbm4e3yEaUCAJqnLv2j2Ts,9
6
+ omnitest-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (83.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ omnitest