alttester-robotframework-library 0.0.1__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,48 @@
1
+ Metadata-Version: 2.1
2
+ Name: alttester-robotframework-library
3
+ Version: 0.0.1
4
+ Summary: Robot Framework Library for the AltTester® framework. AltTester® is an open-source UI driven test automation tool that helps you find objects in your game and interacts with them.
5
+ Home-page: https://alttester.com/docs/sdk/latest/
6
+ Author: Altom Consulting
7
+ Author-email: contact@alttester.com
8
+ License: GNU GPLv3
9
+ Project-URL: Issues, https://github.com/alttester/AltTester-Unity-SDK/issues
10
+ Project-URL: Documentation, https://alttester.com/docs/sdk/latest
11
+ Project-URL: Source, https://github.com/alttester/AltTester-Unity-SDK
12
+ Keywords: robot framework testing test automation alttester
13
+ Classifier: Development Status :: 5 - Production/Stable
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Intended Audience :: Other Audience
16
+ Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Operating System :: OS Independent
19
+ Classifier: Topic :: Games/Entertainment
20
+ Classifier: Topic :: Software Development :: Libraries
21
+ Classifier: Topic :: Software Development :: Testing
22
+ Classifier: Topic :: Software Development :: Testing :: Acceptance
23
+ Classifier: Topic :: Software Development :: Testing :: Unit
24
+ Requires-Python: >=3.4.0
25
+ Description-Content-Type: text/markdown
26
+ Requires-Dist: AltTester-Driver
27
+ Requires-Dist: robotframework~=3.0
28
+
29
+ # AltTesterLibrary for Robot Framework
30
+
31
+
32
+ ## Installation
33
+
34
+ AltTesterLibrary can be installed using `pip` - http://pip-installer.org:
35
+
36
+ `pip install alttester-robotframework-library`
37
+
38
+ You can also install it from the source distribution by running:
39
+
40
+ `python setup.py install`
41
+
42
+
43
+ ## Usage
44
+
45
+ Import the library:
46
+
47
+ *** Settings ***
48
+ Library AltTesterLibrary
@@ -0,0 +1,20 @@
1
+ # AltTesterLibrary for Robot Framework
2
+
3
+
4
+ ## Installation
5
+
6
+ AltTesterLibrary can be installed using `pip` - http://pip-installer.org:
7
+
8
+ `pip install alttester-robotframework-library`
9
+
10
+ You can also install it from the source distribution by running:
11
+
12
+ `python setup.py install`
13
+
14
+
15
+ ## Usage
16
+
17
+ Import the library:
18
+
19
+ *** Settings ***
20
+ Library AltTesterLibrary
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,82 @@
1
+ """
2
+ Copyright(C) 2023 Altom Consulting
3
+
4
+ This program is free software: you can redistribute it and/or modify
5
+ it under the terms of the GNU General Public License as published by
6
+ the Free Software Foundation, either version 3 of the License, or
7
+ (at your option) any later version.
8
+
9
+ This program is distributed in the hope that it will be useful,
10
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ GNU General Public License for more details.
13
+
14
+ You should have received a copy of the GNU General Public License
15
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
16
+ """
17
+
18
+ from setuptools import setup
19
+
20
+ NAME = "alttester-robotframework-library"
21
+ DESCRIPTION = (
22
+ "Robot Framework Library for the AltTester® framework. "
23
+ "AltTester® is an open-source UI driven test "
24
+ "automation tool that helps you find objects in your game "
25
+ "and interacts with them."
26
+ )
27
+ URL = "https://alttester.com/docs/sdk/latest/"
28
+ EMAIL = "contact@alttester.com"
29
+ AUTHOR = "Altom Consulting"
30
+ REQUIRES_PYTHON = ">=3.4.0"
31
+ LICENSE = "GNU GPLv3"
32
+
33
+ with open("src/AltTesterLibrary/version.py") as f:
34
+ for line in f.readlines():
35
+ if "VERSION = " in line:
36
+ VERSION = line.replace("VERSION = ", "") \
37
+ .replace('"', "") \
38
+ .replace("\n", "")
39
+
40
+ with open("requirements.txt") as f:
41
+ REQUIRED = f.read().splitlines()
42
+
43
+ with open("README.md") as f:
44
+ README = f.read()
45
+
46
+ setup(
47
+ name=NAME,
48
+ version=VERSION,
49
+ description=DESCRIPTION,
50
+ long_description=README,
51
+ long_description_content_type="text/markdown",
52
+ license=LICENSE,
53
+ url=URL,
54
+ project_urls={
55
+ "Issues": "https://github.com/alttester/AltTester-Unity-SDK/issues",
56
+ "Documentation": "https://alttester.com/docs/sdk/latest",
57
+ "Source": "https://github.com/alttester/AltTester-Unity-SDK",
58
+ },
59
+ author=AUTHOR,
60
+ author_email=EMAIL,
61
+ zip_safe=False,
62
+ python_requires=REQUIRES_PYTHON,
63
+ setup_requires=REQUIRED,
64
+ install_requires=REQUIRED,
65
+ include_package_data=True,
66
+ keywords="robot framework testing test automation alttester",
67
+ package_dir={"": "src"},
68
+ packages=["AltTesterLibrary"],
69
+ classifiers=[
70
+ "Development Status :: 5 - Production/Stable",
71
+ "Intended Audience :: Developers",
72
+ "Intended Audience :: Other Audience",
73
+ "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
74
+ "Programming Language :: Python :: 3.10",
75
+ "Operating System :: OS Independent",
76
+ "Topic :: Games/Entertainment",
77
+ "Topic :: Software Development :: Libraries",
78
+ "Topic :: Software Development :: Testing",
79
+ "Topic :: Software Development :: Testing :: Acceptance",
80
+ "Topic :: Software Development :: Testing :: Unit",
81
+ ],
82
+ )