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.
23 lines
458 B
TOML
23 lines
458 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',
|
|
]
|
|
|
|
[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'
|
|
]
|