htmlcmp 1.0.6__tar.gz → 1.0.7__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.
@@ -1,10 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: htmlcmp
3
- Version: 1.0.6
3
+ Version: 1.0.7
4
4
  Summary: Compare HTML files by rendered output
5
- Home-page: https://github.com/opendocument-app/compare-html
6
5
  Author: Andreas Stefl
7
- Author-email: stefl.andreas@gmail.com
8
6
  Maintainer-email: Andreas Stefl <stefl.andreas@gmail.com>
9
7
  Project-URL: homepage, https://opendocument.app/
10
8
  Project-URL: source, https://github.com/opendocument-app/compare-html
@@ -13,9 +11,10 @@ Project-URL: tracker, https://github.com/opendocument-app/compare-html/issues
13
11
  Project-URL: release notes, https://github.com/opendocument-app/compare-html/releases
14
12
  Requires-Python: >=3.7
15
13
  Description-Content-Type: text/markdown
16
- Dynamic: author-email
17
- Dynamic: home-page
18
- Dynamic: requires-python
14
+ Requires-Dist: pillow
15
+ Requires-Dist: selenium
16
+ Requires-Dist: flask
17
+ Requires-Dist: watchdog
19
18
 
20
19
  # htmlcmp
21
20
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "htmlcmp"
3
- version = "1.0.6"
3
+ version = "1.0.7"
4
4
  description = "Compare HTML files by rendered output"
5
5
  classifiers = []
6
6
  authors = [
@@ -12,6 +12,12 @@ maintainers = [
12
12
  requires-python = ">=3.7"
13
13
  readme = "README.md"
14
14
  license = {file = "LICENSE.txt"}
15
+ dependencies = [
16
+ "pillow",
17
+ "selenium",
18
+ "flask",
19
+ "watchdog",
20
+ ]
15
21
 
16
22
  [project.scripts]
17
23
  "compare-html" = "htmlcmp.compare_output:main"
@@ -29,9 +35,5 @@ tracker = "https://github.com/opendocument-app/compare-html/issues"
29
35
  [build-system]
30
36
  requires = [
31
37
  "setuptools",
32
- "pillow",
33
- "selenium",
34
- "flask",
35
- "watchdog",
36
38
  ]
37
39
  build-backend = "setuptools.build_meta"
@@ -1,10 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: htmlcmp
3
- Version: 1.0.6
3
+ Version: 1.0.7
4
4
  Summary: Compare HTML files by rendered output
5
- Home-page: https://github.com/opendocument-app/compare-html
6
5
  Author: Andreas Stefl
7
- Author-email: stefl.andreas@gmail.com
8
6
  Maintainer-email: Andreas Stefl <stefl.andreas@gmail.com>
9
7
  Project-URL: homepage, https://opendocument.app/
10
8
  Project-URL: source, https://github.com/opendocument-app/compare-html
@@ -13,9 +11,10 @@ Project-URL: tracker, https://github.com/opendocument-app/compare-html/issues
13
11
  Project-URL: release notes, https://github.com/opendocument-app/compare-html/releases
14
12
  Requires-Python: >=3.7
15
13
  Description-Content-Type: text/markdown
16
- Dynamic: author-email
17
- Dynamic: home-page
18
- Dynamic: requires-python
14
+ Requires-Dist: pillow
15
+ Requires-Dist: selenium
16
+ Requires-Dist: flask
17
+ Requires-Dist: watchdog
19
18
 
20
19
  # htmlcmp
21
20
 
@@ -1,6 +1,5 @@
1
1
  README.md
2
2
  pyproject.toml
3
- setup.py
4
3
  src/htmlcmp/__init__.py
5
4
  src/htmlcmp/common.py
6
5
  src/htmlcmp/compare_output.py
@@ -11,4 +10,5 @@ src/htmlcmp.egg-info/PKG-INFO
11
10
  src/htmlcmp.egg-info/SOURCES.txt
12
11
  src/htmlcmp.egg-info/dependency_links.txt
13
12
  src/htmlcmp.egg-info/entry_points.txt
13
+ src/htmlcmp.egg-info/requires.txt
14
14
  src/htmlcmp.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ pillow
2
+ selenium
3
+ flask
4
+ watchdog
htmlcmp-1.0.6/setup.py DELETED
@@ -1,38 +0,0 @@
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.6",
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
- "pillow",
22
- "selenium",
23
- "flask",
24
- "watchdog",
25
- ],
26
- extras_require={
27
- "dev": ["black"],
28
- "test": ["pytest>=6.0"],
29
- },
30
- entry_points = {
31
- "console_scripts": [
32
- "compare-html=htmlcmp.compare_output:main",
33
- "compare-html-server=htmlcmp.compare_output_server:main",
34
- "html-render-diff=htmlcmp.html_render_diff:main",
35
- "html-tidy=htmlcmp.tidy_output:main",
36
- ],
37
- },
38
- )
File without changes
File without changes
File without changes
File without changes