-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.41 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "netbox-proxy-plugin"
version = "0.1.3"
description = "NetBox plugin for managing HTTP proxy configurations"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.10"
authors = [
{name = "thomaschristory"},
]
keywords = ["netbox", "netbox-plugin", "proxy", "http-proxy", "socks"]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
[project.urls]
Homepage = "https://github.com/thomaschristory/netbox-proxy-plugin"
Repository = "https://github.com/thomaschristory/netbox-proxy-plugin"
Issues = "https://github.com/thomaschristory/netbox-proxy-plugin/issues"
Documentation = "https://github.com/thomaschristory/netbox-proxy-plugin#readme"
Changelog = "https://github.com/thomaschristory/netbox-proxy-plugin/blob/main/CHANGELOG.md"
[project.optional-dependencies]
dev = [
"ruff",
]
[tool.hatch.build.targets.wheel]
packages = ["netbox_proxy_plugin"]
[tool.hatch.build.targets.sdist]
include = ["netbox_proxy_plugin/**", "LICENSE", "README.md", "CHANGELOG.md"]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.ruff.lint.isort]
known-third-party = ["django", "django_filters", "django_tables2"]
known-first-party = ["netbox_proxy_plugin"]