-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (63 loc) · 1.84 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
69
70
71
72
73
74
75
[project]
name = "netboxlabs-diode-sdk"
version = "0.0.1" # Overwritten during the build process
description = "NetBox Labs, Diode SDK"
readme = "README.md" # Optional
requires-python = ">=3.10"
license = {file = "LICENSE.txt"}
authors = [
{name = "NetBox Labs", email = "support@netboxlabs.com" } # Optional
]
maintainers = [
{name = "NetBox Labs", email = "support@netboxlabs.com" } # Optional
]
classifiers = [ # Optional
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
dependencies = [
"certifi==2024.7.4",
"grpcio==1.62.1",
"grpcio-status==1.62.1",
"sentry-sdk>=2.2.1",
]
[project.optional-dependencies] # Optional
dev = ["black", "check-manifest", "ruff"]
test = ["coverage", "pytest", "pytest-cov"]
[tool.coverage.run]
omit = [
"*/netboxlabs/diode/sdk/diode/*",
"*/netboxlabs/diode/sdk/validate/*",
"*/tests/*",
]
[project.urls] # Optional
"Homepage" = "https://netboxlabs.com/"
[project.scripts] # Optional
[tool.setuptools]
packages = [
"netboxlabs.diode.sdk",
"netboxlabs.diode.sdk.diode",
"netboxlabs.diode.sdk.diode.v1",
"netboxlabs.diode.sdk.validate",
]
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 140
exclude = [
"netboxlabs/diode/sdk/diode/*",
"netboxlabs/diode/sdk/validate/*",
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.ruff.lint]
select = ["C", "D", "E", "F", "I", "R", "UP", "W"]
ignore = ["F401", "D203", "D212", "D400", "D401", "D404", "RET504"]