-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (28 loc) · 947 Bytes
/
pyproject.toml
File metadata and controls
34 lines (28 loc) · 947 Bytes
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
[project]
name = "netboxlabs-diode"
version = "1.2.0"
description = "Diode is a data ingestion service for NetBox that greatly simplifies and enhances the process of adding and updating data in NetBox"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "NetBox Labs", email = "support@netboxlabs.com" }
]
maintainers = [
{ name = "NetBox Labs", email = "support@netboxlabs.com" }
]
dependencies = []
[project.optional-dependencies]
dev = ["mkdocs", "mkdocs-material"]
test = ["pytest", "pytest-cov", "coverage"]
[project.urls]
"Homepage" = "https://netboxlabs.com/"
"Repository" = "https://github.com/netboxlabs/diode"
"Issues" = "https://github.com/netboxlabs/diode/issues"
"Documentation" = "https://github.com/netboxlabs/diode/docs"
[project.scripts]
[tool.setuptools]
packages = []
license-files = ["LICENSE.md"]
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"