Initial version of packaging
This is only support "code", the real code has not been migrated yet. Also, the README is quite lacking in content.master
parent
822fc1c507
commit
927bc8857d
@ -0,0 +1,4 @@
|
||||
A simple tool for visualising OSPF network topology as seen by BIRD
|
||||
====
|
||||
|
||||
<!-- TODO: write more… -->
|
@ -1,3 +1,5 @@
|
||||
from pathlib import Path
|
||||
|
||||
assets = Path(__file__).resolve().parent / 'assets'
|
||||
|
||||
__version__ = '0.0.1-a1.dev1'
|
||||
|
@ -0,0 +1,22 @@
|
||||
[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'
|
||||
]
|
Loading…
Reference in New Issue