generated from Lookyloo/pyproject_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
57 lines (50 loc) · 1.64 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
55
56
57
[project]
name = "lacuscore"
version = "1.13.0"
description = "Core of Lacus, usable as a module"
authors = [
{name="Raphaël Vinot", email="[email protected]"}
]
license = "BSD-3-Clause"
repository = "https://github.com/ail-project/LacusCore"
documentation = "https://lacuscore.readthedocs.io/en/latest/"
readme = "README.md"
requires-python = ">=3.9.2,<4.0"
dynamic = [ "classifiers" ]
dependencies = [
"requests (>=2.32.3)",
"playwrightcapture[recaptcha] (>=1.28.0)",
"defang (>=0.5.3)",
"ua-parser[regex] (>=1.0.1)",
"redis [hiredis] (>=5.2.1)",
"dnspython (>=2.7.0)",
"async-timeout (>=5.0.1) ; python_version < \"3.11\"",
"pydantic (>=2.10.6)",
"eval-type-backport (>=0.2.2) ; python_version < \"3.10\""
]
[project.urls]
Repository = "https://github.com/ail-project/LacusCore"
Issues = "https://github.com/ail-project/issues"
Documentation = "https://lacuscore.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.optional-dependencies]
docs = ["Sphinx (>=8.1.3) ; python_version >= \"3.10\""]
[tool.poetry.group.dev.dependencies]
mypy = "^1.15.0"
types-redis = {version = "^4.6.0.20241004"}
types-requests = "^2.32.0.20241016"
types-beautifulsoup4 = "^4.12.0.20250204"
pytest = "^8.3.4"
[build-system]
requires = ["poetry-core>=2.0"]
build-backend = "poetry.core.masonry.api"