DataComparerLibrary 0.856__tar.gz → 0.857__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.
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/PKG-INFO +4 -1
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/pyproject.toml +4 -1
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary.egg-info/PKG-INFO +4 -1
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/LICENSE.txt +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/README.rst +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/setup.cfg +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/__init__.py +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/datacomparer.py +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/datasorter.py +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/datetimehandler.py +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/delimitertranslator.py +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/field.py +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/fileconverter.py +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/matchstatus.py +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/report.py +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/row.py +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/tools.py +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/twodarray.py +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary.egg-info/SOURCES.txt +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary.egg-info/dependency_links.txt +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary.egg-info/requires.txt +0 -0
- {datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary.egg-info/top_level.txt +0 -0
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: DataComparerLibrary
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.857
|
|
4
4
|
Summary: For comparing csv-files, 2d-array with a csv-file or 2d-arrays. For comparing text-files, text variable with a text-file or text variables. Including a sorting module.
|
|
5
5
|
Author-email: René Philip Zuijderduijn <datacomparerlibrary@outlook.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://github.com/ReneFromHolland/DataComparerLibrary
|
|
8
8
|
Project-URL: Keyword docs, https://github.com/ReneFromHolland/DataComparerLibrary
|
|
9
|
+
Project-URL: Source, https://github.com/ReneFromHolland/DataComparerLibrary
|
|
10
|
+
Project-URL: Issue Tracker, https://github.com/ReneFromHolland/DataComparerLibrary/issues
|
|
11
|
+
Project-URL: Documentation, https://github.com/ReneFromHolland/DataComparerLibrary
|
|
9
12
|
Keywords: robotframework,Robot Framework,testing,test-automation,datacompare,data compare,compare csv files,compare text files,compare txt files,compare arrays,compare text
|
|
10
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
14
|
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
|
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
|
6
6
|
[project]
|
|
7
7
|
name = "DataComparerLibrary"
|
|
8
8
|
description = "For comparing csv-files, 2d-array with a csv-file or 2d-arrays. For comparing text-files, text variable with a text-file or text variables. Including a sorting module."
|
|
9
|
-
version = "0.
|
|
9
|
+
version = "0.857"
|
|
10
10
|
dependencies = ["python-dateutil"]
|
|
11
11
|
authors = [{ name = "René Philip Zuijderduijn", email = "datacomparerlibrary@outlook.com" }]
|
|
12
12
|
readme = "README.rst"
|
|
@@ -32,6 +32,9 @@ keywords = ["robotframework", "Robot Framework","testing", "test-automation", "d
|
|
|
32
32
|
[project.urls]
|
|
33
33
|
"Homepage" = "https://github.com/ReneFromHolland/DataComparerLibrary"
|
|
34
34
|
"Keyword docs" = "https://github.com/ReneFromHolland/DataComparerLibrary"
|
|
35
|
+
"Source" = "https://github.com/ReneFromHolland/DataComparerLibrary"
|
|
36
|
+
"Issue Tracker" = "https://github.com/ReneFromHolland/DataComparerLibrary/issues"
|
|
37
|
+
"Documentation" = "https://github.com/ReneFromHolland/DataComparerLibrary"
|
|
35
38
|
|
|
36
39
|
[tool.setuptools]
|
|
37
40
|
package-dir = { "" = "src" }
|
{datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary.egg-info/PKG-INFO
RENAMED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: DataComparerLibrary
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.857
|
|
4
4
|
Summary: For comparing csv-files, 2d-array with a csv-file or 2d-arrays. For comparing text-files, text variable with a text-file or text variables. Including a sorting module.
|
|
5
5
|
Author-email: René Philip Zuijderduijn <datacomparerlibrary@outlook.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://github.com/ReneFromHolland/DataComparerLibrary
|
|
8
8
|
Project-URL: Keyword docs, https://github.com/ReneFromHolland/DataComparerLibrary
|
|
9
|
+
Project-URL: Source, https://github.com/ReneFromHolland/DataComparerLibrary
|
|
10
|
+
Project-URL: Issue Tracker, https://github.com/ReneFromHolland/DataComparerLibrary/issues
|
|
11
|
+
Project-URL: Documentation, https://github.com/ReneFromHolland/DataComparerLibrary
|
|
9
12
|
Keywords: robotframework,Robot Framework,testing,test-automation,datacompare,data compare,compare csv files,compare text files,compare txt files,compare arrays,compare text
|
|
10
13
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
14
|
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/datacomparer.py
RENAMED
|
File without changes
|
{datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/datasorter.py
RENAMED
|
File without changes
|
{datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/datetimehandler.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/fileconverter.py
RENAMED
|
File without changes
|
{datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/matchstatus.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary/twodarray.py
RENAMED
|
File without changes
|
{datacomparerlibrary-0.856 → datacomparerlibrary-0.857}/src/DataComparerLibrary.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|