-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 884 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (35 loc) · 884 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "lantern-lan"
version = "0.3.0"
description = "LAN inventory, diff, and risk tracker companion for network scanners."
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [{ name = "Stuart McKay" }]
dependencies = [
"click>=8.1",
"jinja2>=3.1",
]
[project.urls]
Homepage = "https://github.com/gingerninja85/lantern"
Repository = "https://github.com/gingerninja85/lantern"
Issues = "https://github.com/gingerninja85/lantern/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.6",
]
[project.scripts]
lantern = "lantern.cli:main"
lantern-gui = "lantern.gui:main"
[tool.hatch.build.targets.wheel]
packages = ["src/lantern"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
src = ["src", "tests"]