generated from Lookyloo/pyproject_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (56 loc) · 1.9 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
58
59
60
61
62
[tool.poetry]
name = "lacuscore"
version = "1.12.5"
description = "Core of Lacus, usable as a module"
authors = ["Raphaël Vinot <raphael.vinot@circl.lu>"]
license = "BSD-3-Clause"
repository = "https://github.com/ail-project/LacusCore"
documentation = "https://lacuscore.readthedocs.io/en/latest/"
readme = "README.md"
classifiers = [
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Operating System :: POSIX :: Linux',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Security',
'Topic :: Internet',
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.32.3"
Sphinx = [
{version = "^7.2", python = ">=3.9,<3.10", optional = true},
{version = "^8", python = ">=3.10", optional = true}
]
playwrightcapture = {extras = ["recaptcha"], version = "^1.27.3"}
defang = "^0.5.3"
ua-parser = "^0.18.0"
redis = {version = "^5.2.0", extras = ["hiredis"]}
dnspython = {version = "^2.7.0", python = ">=3.9"}
async-timeout = {version = "^4.0.3", python = "<3.11"}
pydantic = "^2.10.1"
eval-type-backport = {version = "^0.2.0", python = "<3.10"}
[tool.poetry.extras]
docs = ["Sphinx"]
[tool.poetry.group.dev.dependencies]
mypy = "^1.13.0"
types-redis = {version = "^4.6.0.20241004"}
types-requests = "^2.32.0.20241016"
types-beautifulsoup4 = "^4.12.0.20241020"
ipython = [
{version = "^8.18.0", python = ">=3.9"},
{version = "^8.19.0", python = ">=3.10"}
]
pytest = "^8.3.3"
[build-system]
requires = ["poetry_core"]
build-backend = "poetry.core.masonry.api"