-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
47 lines (40 loc) · 1.28 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
# See PEP 518 for the spec of this file
# https://www.python.org/dev/peps/pep-0518/
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cookiecutter-netbox-plugin"
version = "0.2.0"
authors = [
{name = "Arthur Hanson", email = "[email protected]"},
]
description = "Cookiecutter template for a NetBox plugin"
readme = "README.md"
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
requires-python = ">=3.10.0"
[project.optional-dependencies]
test = [
"black==24.3.0",
"check-manifest==0.49",
"pre-commit==3.7.0",
"pytest==8.1.1",
"flake8",
"flake8-pyproject",
"pytest-github-actions-annotate-failures",
]
[project.urls]
Documentation = "https://https://github.com/netbox-community/cookiecutter-netbox-plugin/blob/main/README.md"
Source = "https://https://github.com/netbox-community/cookiecutter-netbox-plugin"
Tracker = "https://github.com/netbox-community/cookiecutter-netbox-plugin/issues"
[tool.black]
line-length = 120
target-version = ['py312']