-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 loc) · 1.16 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
[tool.poetry]
name = "netbox-quicklinks"
version = "0.1.1"
description = "Netbox plugin for supporting quick links based on unique item values"
authors = ["Ethan Paul <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/enpaul/netbox-quicklinks/"
keywords = ["netbox", "plugin", "quick", "links"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Plugins",
"Natural Language :: English",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.10"
[tool.poetry.group.dev.dependencies]
black = "^23.10.1"
blacken-docs = "^1.16.0"
mdformat = "^0.7.17"
mdformat-gfm = "^0.3.5"
mypy = "^1.6.1"
pre-commit = "^3.5.0"
pre-commit-hooks = "^4.5.0"
pylint = "^3.0.2"
reorder-python-imports = "^3.12.0"
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"