-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.78 KB
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>=77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "cookiecutter-netbox-plugin"
version = "0.3.0"
authors = [
{name = "Arthur Hanson", email = "[email protected]"},
]
description = "Cookiecutter template for a NetBox plugin"
readme = "README.md"
license-files = ["LICENSE"]
keywords = ["cookiecutter", "template", "netbox", "netbox-plugin"]
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Software Development :: Code Generators',
'Topic :: System :: Networking',
]
requires-python = ">=3.12.0"
[project.optional-dependencies]
test = [
"check-manifest==0.51",
"ruff==0.14.14",
"pre-commit==6.0.0",
"pytest==9.0.2",
"pytest-cookies==0.7.0",
"pytest-github-actions-annotate-failures",
]
dev = [
"cookiecutter>=2.1.0",
]
[project.urls]
Documentation = "https://github.com/netbox-community/cookiecutter-netbox-plugin/blob/main/README.md"
Source = "https://github.com/netbox-community/cookiecutter-netbox-plugin"
Tracker = "https://github.com/netbox-community/cookiecutter-netbox-plugin/issues"
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
]
ignore = [
"E501", # line too long, handled by ruff-format
]