-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
77 lines (68 loc) · 1.61 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "luminaut"
dynamic = ["version"]
description = "Casting light on shadow cloud deployments"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Topic :: Security",
"Topic :: Utilities",
]
dependencies = [
"boto3~=1.35.53",
"orjson~=3.10.12",
"python3-nmap~=1.9.1",
"rich~=13.9.4",
"shodan~=1.31.0",
]
[project.scripts]
luminaut = "luminaut.__main__:main"
[dependency-groups]
dev = [
"moto>=5.0.18",
"pytest-cov>=6.0.0",
"pytest>=8.3.3",
"ruff>=0.8.3",
"pyright>=1.1.391",
]
[project.urls]
Homepage = "https://luminaut.org"
Documentation = "https://luminaut.org"
Repository = "https://github.com/luminaut-org/luminaut.git"
Issues = "https://github.com/luminaut-org/luminaut/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/luminaut/__init__.py"
pattern = '^__version__ = "(?P<version>[^"]+)"'
[tool.uv]
package = true
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# isort
"I",
]
[tool.pytest.ini_options]
addopts = "--cov=src/luminaut --cov-report=term --cov-report=html --cov-report=xml --cov-branch --durations=3"
[tool.pyright]
include = [
"src",
"tests"
]
pythonVersion = "3.11"
# For detecting venv with pyright via pre-commit
venvPath = "."
venv = ".venv"