Files
werkzeuge/teamleader_test2/pyproject.toml
root cb073786b3 Initial commit: Werkzeuge-Sammlung
Enthält:
- rdp_client.py: RDP Client mit GUI und Monitor-Auswahl
- rdp.sh: Bash-basierter RDP Client
- teamleader_test/: Network Scanner Fullstack-App
- teamleader_test2/: Network Mapper CLI

Subdirectories mit eigenem Repo wurden ausgeschlossen.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-28 09:39:24 +01:00

30 lines
603 B
TOML

[project]
name = "lan-graph"
version = "0.1.0"
description = "Local LAN discovery with a Visio-style web visualization."
readme = "README.md"
authors = [
{ name = "TeamLeader", email = "teamleader@example.com" },
]
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.113",
"uvicorn[standard]>=0.24",
"typer>=0.9",
]
[project.optional-dependencies]
testing = [
"pytest>=8.3",
]
[project.scripts]
lan-graph = "network_mapper.cli:app"
[tool.setuptools]
packages = ["network_mapper"]
[build-system]
requires = ["setuptools>=61.0","wheel"]
build-backend = "setuptools.build_meta"