You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
birdvisu/pyproject.toml

26 lines
507 B
TOML

[project]
name = 'birdvisu'
description = 'A simple tool for visualising OSPF network topology as seen by BIRD'
dynamic = ['version']
readme = './README.md'
requires-python = '~= 3.10'
dependencies = [
'PySide6',
]
[project.gui-scripts]
visu = "birdvisu.ui:main"
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project.optional-dependencies]
# Just a PoC as of now, but we will (hopefully) use these tools in the future.
doc = [
'sphinx',
]
check = [
'mypy'
]