forked from DanSheps/netbox-routing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (34 loc) · 889 Bytes
/
pyproject.toml
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
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "netbox-routing"
authors = [
{name = "Daniel Sheppard", email = "dans@dansheps.com"}
]
maintainers = [
{name = "Daniel Sheppard", email = "dans@dansheps.com"},
]
description = "A NetBox Routing Plugin"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["netbox-plugin", ]
version = "0.3.0-alpha1"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
'django-polymorphic',
]
[project.urls]
Documentation = "https://github.com/dansheps/netbox-routing/blob/main/README.md"
Source = "https://github.com/dansheps/netbox-routing"
Tracker = "https://github.com/dansheps/netbox-routing/issues"
[tool.setuptools.packages.find]
exclude=["netbox_routing.tests"]
[tool.black]
skip-string-normalization = 1