-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
60 lines (50 loc) · 1.47 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
[project]
name = "netboxlabs-netbox-branching"
version = "0.5.2"
description = "A git-like branching implementation for NetBox"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "PolyForm Shield License 1.0.0" }
authors = [
{ name = "NetBox Labs", email = "support@netboxlabs.com" }
]
maintainers = [
{ name = "NetBox Labs", email = "support@netboxlabs.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
dependencies = [
"Django",
]
[project.optional-dependencies]
dev = ["check-manifest", "mkdocs", "mkdocs-material", "ruff"]
test = ["coverage", "pytest", "pytest-cov"]
[project.urls]
"Homepage" = "https://netboxlabs.com/"
[project.scripts]
[tool.setuptools]
packages = [
"netbox_branching",
]
package-data = { "netbox_branching" = ["**/*", "templates/**"] }
exclude-package-data = { netbox_branching = ["tests/*"] }
license-files = ["LICENSE.md"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["E1", "E2", "E3", "E501", "W"]
ignore = ["F403", "F405"]
preview = true
[tool.ruff.format]
quote-style = "single"
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"