har2tree 1.35.1__tar.gz → 1.36.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.
- {har2tree-1.35.1 → har2tree-1.36.0}/PKG-INFO +6 -6
- {har2tree-1.35.1 → har2tree-1.36.0}/pyproject.toml +8 -8
- {har2tree-1.35.1 → har2tree-1.36.0}/LICENSE +0 -0
- {har2tree-1.35.1 → har2tree-1.36.0}/README.md +0 -0
- {har2tree-1.35.1 → har2tree-1.36.0}/har2tree/__init__.py +0 -0
- {har2tree-1.35.1 → har2tree-1.36.0}/har2tree/har2tree.py +0 -0
- {har2tree-1.35.1 → har2tree-1.36.0}/har2tree/helper.py +0 -0
- {har2tree-1.35.1 → har2tree-1.36.0}/har2tree/nodes.py +0 -0
- {har2tree-1.35.1 → har2tree-1.36.0}/har2tree/parser.py +0 -0
- {har2tree-1.35.1 → har2tree-1.36.0}/har2tree/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: har2tree
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.36.0
|
|
4
4
|
Summary: HTTP Archive (HAR) to ETE Toolkit generator
|
|
5
5
|
License-Expression: BSD-3-Clause
|
|
6
6
|
License-File: LICENSE
|
|
@@ -20,19 +20,19 @@ Classifier: Programming Language :: Python :: 3.14
|
|
|
20
20
|
Classifier: Topic :: Internet
|
|
21
21
|
Classifier: Topic :: Security
|
|
22
22
|
Provides-Extra: docs
|
|
23
|
-
Requires-Dist: Sphinx (>=
|
|
24
|
-
Requires-Dist: beautifulsoup4[charset-normalizer,lxml] (>=4.14.
|
|
23
|
+
Requires-Dist: Sphinx (>=9.0.4) ; (python_version >= "3.11") and (extra == "docs")
|
|
24
|
+
Requires-Dist: beautifulsoup4[charset-normalizer,lxml] (>=4.14.3)
|
|
25
25
|
Requires-Dist: ete3 (>=3.1.3)
|
|
26
26
|
Requires-Dist: filetype (>=1.2.0)
|
|
27
27
|
Requires-Dist: json-stream (>=2.3.3,<3.0.0)
|
|
28
28
|
Requires-Dist: legacy-cgi (>=2.6.4) ; python_version >= "3.13" and python_version < "4.0"
|
|
29
29
|
Requires-Dist: multipart (>=1.3.0,<2.0.0)
|
|
30
30
|
Requires-Dist: numpy (>=2.2,<2.3) ; python_version < "3.11"
|
|
31
|
-
Requires-Dist: numpy (>=2.3.5) ; python_version >= "3.11" and python_version < "
|
|
32
|
-
Requires-Dist: publicsuffixlist (>=1.0.2.
|
|
31
|
+
Requires-Dist: numpy (>=2.3.5) ; python_version >= "3.11" and python_version < "3.15"
|
|
32
|
+
Requires-Dist: publicsuffixlist (>=1.0.2.20251209)
|
|
33
33
|
Requires-Dist: requests-toolbelt (>=1.0.0,<2.0.0)
|
|
34
34
|
Requires-Dist: six (>=1.17.0) ; extra == "docs"
|
|
35
|
-
Requires-Dist: tinycss2 (>=1.5.
|
|
35
|
+
Requires-Dist: tinycss2 (>=1.5.1)
|
|
36
36
|
Requires-Dist: w3lib (>=2.3.1)
|
|
37
37
|
Project-URL: Documentation, https://har2tree.readthedocs.io/en/latest/
|
|
38
38
|
Project-URL: Repository, https://github.com/Lookyloo/har2tree
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "har2tree"
|
|
3
|
-
version = "1.
|
|
3
|
+
version = "1.36.0"
|
|
4
4
|
description = "HTTP Archive (HAR) to ETE Toolkit generator"
|
|
5
5
|
authors = [
|
|
6
6
|
{name="Raphaël Vinot", email="raphael.vinot@circl.lu"}
|
|
@@ -13,15 +13,15 @@ dynamic = [ "classifiers" ]
|
|
|
13
13
|
|
|
14
14
|
dependencies = [
|
|
15
15
|
"ete3 (>=3.1.3)",
|
|
16
|
-
"beautifulsoup4[charset-normalizer,lxml] (>=4.14.
|
|
17
|
-
"publicsuffixlist (>=1.0.2.
|
|
16
|
+
"beautifulsoup4[charset-normalizer,lxml] (>=4.14.3)",
|
|
17
|
+
"publicsuffixlist (>=1.0.2.20251209)",
|
|
18
18
|
"filetype (>=1.2.0)",
|
|
19
19
|
# poetry up fails with the version of numpy forced for python < 3.11.
|
|
20
20
|
# The work around is to comment it, run poetry up, uncomment it. and run poetry update.
|
|
21
21
|
"numpy (>=2.2,<2.3) ; python_version < '3.11'",
|
|
22
|
-
"numpy (>=2.3.5) ; python_version >= \"3.11\" and python_version < \"
|
|
22
|
+
"numpy (>=2.3.5) ; python_version >= \"3.11\" and python_version < \"3.15\"",
|
|
23
23
|
"w3lib (>=2.3.1)",
|
|
24
|
-
"tinycss2 (>=1.5.
|
|
24
|
+
"tinycss2 (>=1.5.1)",
|
|
25
25
|
"legacy-cgi (>=2.6.4) ; python_version >= \"3.13\" and python_version < \"4.0\"",
|
|
26
26
|
"multipart (>=1.3.0,<2.0.0)",
|
|
27
27
|
"json-stream (>=2.3.3,<3.0.0)",
|
|
@@ -44,12 +44,12 @@ classifiers = [
|
|
|
44
44
|
]
|
|
45
45
|
|
|
46
46
|
[project.optional-dependencies]
|
|
47
|
-
docs = ["Sphinx (>=
|
|
47
|
+
docs = ["Sphinx (>=9.0.4) ; python_version >= \"3.11\"", "six (>=1.17.0)"]
|
|
48
48
|
|
|
49
49
|
[tool.poetry.group.dev.dependencies]
|
|
50
|
-
mypy = "^1.
|
|
50
|
+
mypy = "^1.19.0"
|
|
51
51
|
pytest-cov = "^7.0.0"
|
|
52
|
-
coverage = "^7.
|
|
52
|
+
coverage = "^7.13.0"
|
|
53
53
|
types-beautifulsoup4 = "^4.12.0.20250516"
|
|
54
54
|
|
|
55
55
|
[build-system]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|