htmlcmp 1.0.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.
htmlcmp-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: htmlcmp
3
+ Version: 1.0.0
4
+ Summary: Compare HTML files by rendered output
5
+ Home-page: https://github.com/opendocument-app/compare-html
6
+ Author: Andreas Stefl
7
+ Author-email: stefl.andreas@gmail.com
8
+ Maintainer-email: Andreas Stefl <stefl.andreas@gmail.com>
9
+ Project-URL: homepage, https://opendocument.app/
10
+ Project-URL: source, https://github.com/opendocument-app/compare-html
11
+ Project-URL: download, https://pypi.org/project/pyodr/#files
12
+ Project-URL: tracker, https://github.com/opendocument-app/compare-html/issues
13
+ Project-URL: release notes, https://github.com/opendocument-app/compare-html/releases
14
+ Requires-Python: >=3.7
15
+ Description-Content-Type: text/markdown
16
+ Dynamic: author-email
17
+ Dynamic: home-page
18
+ Dynamic: requires-python
19
+
20
+ # comare-html
21
+
22
+ originally moved out of https://github.com/opendocument-app/OpenDocument.core
23
+
24
+ ## Manually build the docker image
25
+
26
+ ```bash
27
+ docker build --tag odr_core_test test/docker
28
+ ```
@@ -0,0 +1,9 @@
1
+ # comare-html
2
+
3
+ originally moved out of https://github.com/opendocument-app/OpenDocument.core
4
+
5
+ ## Manually build the docker image
6
+
7
+ ```bash
8
+ docker build --tag odr_core_test test/docker
9
+ ```
@@ -0,0 +1,37 @@
1
+ [project]
2
+ name = "htmlcmp"
3
+ version = "1.0.0"
4
+ description = "Compare HTML files by rendered output"
5
+ classifiers = []
6
+ authors = [
7
+ {name = "Andreas Stefl"},
8
+ ]
9
+ maintainers = [
10
+ {name = "Andreas Stefl", email="stefl.andreas@gmail.com"},
11
+ ]
12
+ requires-python = ">=3.7"
13
+ readme = "README.md"
14
+ license = {file = "LICENSE.txt"}
15
+
16
+ [project.scripts]
17
+ "compare-html" = "htmlcmp.compare_output:main"
18
+ "compare-html-server" = "htmlcmp.compare_output_server:main"
19
+ "html-render-diff" = "htmlcmp.html_render_diff:main"
20
+ "html-tidy" = "htmlcmp.tidy_output:main"
21
+
22
+ [project.urls]
23
+ homepage = "https://opendocument.app/"
24
+ source = "https://github.com/opendocument-app/compare-html"
25
+ download = "https://pypi.org/project/pyodr/#files"
26
+ tracker = "https://github.com/opendocument-app/compare-html/issues"
27
+ "release notes" = "https://github.com/opendocument-app/compare-html/releases"
28
+
29
+ [build-system]
30
+ requires = [
31
+ "setuptools",
32
+ "Pillow>=10.3.0",
33
+ "selenium",
34
+ "flask",
35
+ "watchdog",
36
+ ]
37
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
htmlcmp-1.0.0/setup.py ADDED
@@ -0,0 +1,33 @@
1
+ from setuptools import setup, find_packages
2
+ from pathlib import Path
3
+
4
+
5
+ this_directory = Path(__file__).parent
6
+ long_description = (this_directory / "README.md").read_text()
7
+
8
+ setup(
9
+ name="htmlcmp",
10
+ version="1.0.0",
11
+ author="Andreas Stefl",
12
+ author_email="stefl.andreas@gmail.com",
13
+ description="Compare HTML files by rendered output",
14
+ url="https://github.com/opendocument-app/compare-html",
15
+ long_description=long_description,
16
+ long_description_content_type="text/markdown",
17
+ python_requires=">=3.7",
18
+ packages=find_packages("src"),
19
+ package_dir={"": "src"},
20
+ install_requires=[],
21
+ extras_require={
22
+ "dev": ["black"],
23
+ "test": ["pytest>=6.0"],
24
+ },
25
+ entry_points = {
26
+ "console_scripts": [
27
+ "compare-html=htmlcmp.compare_output:main",
28
+ "compare-html-server=htmlcmp.compare_output_server:main",
29
+ "html-render-diff=htmlcmp.html_render_diff:main",
30
+ "html-tidy=htmlcmp.tidy_output:main",
31
+ ],
32
+ },
33
+ )
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.4
2
+ Name: htmlcmp
3
+ Version: 1.0.0
4
+ Summary: Compare HTML files by rendered output
5
+ Home-page: https://github.com/opendocument-app/compare-html
6
+ Author: Andreas Stefl
7
+ Author-email: stefl.andreas@gmail.com
8
+ Maintainer-email: Andreas Stefl <stefl.andreas@gmail.com>
9
+ Project-URL: homepage, https://opendocument.app/
10
+ Project-URL: source, https://github.com/opendocument-app/compare-html
11
+ Project-URL: download, https://pypi.org/project/pyodr/#files
12
+ Project-URL: tracker, https://github.com/opendocument-app/compare-html/issues
13
+ Project-URL: release notes, https://github.com/opendocument-app/compare-html/releases
14
+ Requires-Python: >=3.7
15
+ Description-Content-Type: text/markdown
16
+ Dynamic: author-email
17
+ Dynamic: home-page
18
+ Dynamic: requires-python
19
+
20
+ # comare-html
21
+
22
+ originally moved out of https://github.com/opendocument-app/OpenDocument.core
23
+
24
+ ## Manually build the docker image
25
+
26
+ ```bash
27
+ docker build --tag odr_core_test test/docker
28
+ ```
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ src/htmlcmp.egg-info/PKG-INFO
5
+ src/htmlcmp.egg-info/SOURCES.txt
6
+ src/htmlcmp.egg-info/dependency_links.txt
7
+ src/htmlcmp.egg-info/entry_points.txt
8
+ src/htmlcmp.egg-info/top_level.txt
@@ -0,0 +1,5 @@
1
+ [console_scripts]
2
+ compare-html = htmlcmp.compare_output:main
3
+ compare-html-server = htmlcmp.compare_output_server:main
4
+ html-render-diff = htmlcmp.html_render_diff:main
5
+ html-tidy = htmlcmp.tidy_output:main