-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.46 KB
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 = "pylookyloo"
version = "1.39.0"
description = "Python CLI and module for Lookyloo"
authors = [
{name="Raphaël Vinot", email="raphael.vinot@circl.lu"}
]
license = "GPL-2.0-or-later"
readme = "README.md"
requires-python = ">=3.10,<3.15"
dynamic = [ "classifiers" ]
dependencies = [
"requests (>=2.33.1)",
"lookyloo-models (>=0.2.2)",
"deprecated (>=1.3.1,<2.0.0) ; python_version < \"3.13\"",
"pydantic (>=2.12.5,<3.0.0)",
"urllib3 (>=2.6.3,<3.0.0)"
]
[project.urls]
repository = "https://github.com/lookyloo/PyLookyloo"
issues = "https://github.com/lookyloo/PyLookyloo/issues"
documentation = "https://pylookyloo.readthedocs.io/en/latest/"
[tool.poetry]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Topic :: Security',
'Topic :: Internet',
]
[project.scripts]
lookyloo = 'pylookyloo:main'
[project.optional-dependencies]
docs = ["sphinx (>=9.1.0) ; python_version >= \"3.12\""]
examples = ["pylacus (>=1.24.0)"]
[tool.poetry.group.dev.dependencies]
mypy = "^1.20.2"
types-requests = "^2.33.0.20260408"
pytest = "^9.0.3"
types-deprecated = {version="^1.3.1.20260408", markers="python_version < \"3.13\""}
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"