-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
56 lines (48 loc) · 1.76 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "netbox-data-flows"
description = "NetBox plugin to document data flows between systems and applications."
authors = [
{ name="Thomas Fargeix" },
]
license = {text = "Apache 2.0"}
readme = {file = "README.md", content-type = "text/markdown"}
keywords = ["netbox", "netbox-plugins"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Plugins",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: Apache Software License",
"Topic :: System :: Networking",
]
requires-python = ">=3.10"
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/Alef-Burzmali/netbox-data-flows"
"Documentation" = "https://Alef-Burzmali.github.io/netbox-data-flows"
"Bug Tracker" = "https://github.com/Alef-Burzmali/netbox-data-flows/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "netbox_data_flows.__version__"}
[tool.setuptools.package-data]
netbox_data_flows = ["templates/**"]
[tool.black]
line-length = 120
target_version = ["py310", "py311", "py312"]
[tool.isort]
profile = "black"
line_length = 120
lines_after_imports = 2
skip_gitignore = true
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "NETBOX_CORE", "NETBOX_APPS", "FIRSTPARTY", "LOCALFOLDER"]
known_netbox_core = ["account", "core", "extras", "netbox", "utilities", "users"]
known_netbox_apps = ["circuits", "dcim", "ipam", "tenancy", "virtualization", "vpn", "wireless"]
[tool.flake8]
extend-ignore = ["D100","D101","D102","D103","D104","D105","D106","D107","D401"]
max-line-length = 120