generated from menckend/netbox_ptov
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (56 loc) · 1.78 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
57
58
59
60
61
62
63
64
65
66
67
68
# See PEP 518 for the spec of this file
# https://www.python.org/dev/peps/pep-0518/
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
#[tool.pyright]
#root = ["netbox_rpki"]
#include = ["netbox_rpki", "lib/netbox/*"]
#exclude = ["**/node_modules", "**/__pycache__"]
[tool.setuptools_scm]
version_file = "netbox_rpki/version.py"
[tool.setuptools.packages.find]
exclude = [".venv*", "tests*", "docs*", ".github*", ".gitignore", "external_sources"]
[tool.black]
line-length = 120
target_version = ['py39', 'py310', 'py311', 'py312']
[tool.setuptools.package-data]
netbox_rpki = ["templates/**"]
[project]
name = "netbox_rpki"
dynamic = ["version"]
authors = [
{name = "Mencken Davidson", email = "[email protected]"},
]
maintainers = [
{name = "Mencken Davidson", email = "[email protected]"}
]
license = {file = "LICENSE"}
description = "NetBox plugin for BGP RPKI support."
readme = "README.md"
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
dependencies = [ "build"]
keywords = ["netbox", "plugin", "bgp", "rpki", "roa"]
requires-python= ">=3.6.8"
[project.urls]
Documentation = "https://github.com/menckend/netbox_rpki/blob/main/README.md"
Source = "https://github.com/menckend/netbox_rpki"
Tracker = "https://github.com/menckend/netbox_rpki/issues"
[project.optional-dependencies]
test = [
"black==24.3.0",
"check-manifest==0.49",
"flake8",
"flake8-pyproject",
"pre-commit==3.7.0",
"pytest==8.1.1",
]