-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
54 lines (47 loc) · 1.57 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[project]
name = "har2tree"
version = "1.27.11"
description = "HTTP Archive (HAR) to ETE Toolkit generator"
authors = [
{name="Raphaël Vinot", email="[email protected]"}
]
license = "BSD-3-Clause"
readme = "README.md"
requires-python = ">=3.9"
dynamic = [ "classifiers" ]
dependencies = [
"ete3 (>=3.1.3)",
"beautifulsoup4[charset-normalizer,lxml] (>=4.13.3)",
"publicsuffixlist (>=1.0.2.20250212)",
"filetype (>=1.2.0)",
# poetry up fails with the version of numpy forced for python < 3.10.
# The work around is to comment it, run poetry up, uncomment it. and run poetry update.
"numpy (<=2.1) ; python_version == \"3.9\"",
"numpy (>=2.2.2) ; python_version >= \"3.10\"",
"w3lib (>=2.3.1)",
"tinycss2 (>=1.4.0)",
"legacy-cgi (>=2.6.2) ; python_version >= \"3.13,<4.0\"",
]
[project.urls]
repository = "https://github.com/Lookyloo/har2tree"
issues = "https://github.com/Lookyloo/har2tree/issues"
documentation = "https://har2tree.readthedocs.io/en/latest/"
[tool.poetry]
classifiers = [
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Topic :: Security',
'Topic :: Internet'
]
[project.optional-dependencies]
docs = ["Sphinx (>=8.1.3) ; python_version >= \"3.10\"", "six (>=1.17.0)"]
[tool.poetry.group.dev.dependencies]
mypy = "^1.15.0"
pytest-cov = "^6.0.0"
coverage = "^7.6.12"
types-beautifulsoup4 = "^4.12.0.20250204"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"