Skip to content

Commit

Permalink
remove drf-spectacular - is covered in nautobot core.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradh11 committed Sep 29, 2023
1 parent 9db87ef commit 44c2bd1
Showing 1 changed file with 10 additions and 14 deletions.
24 changes: 10 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,14 @@ readme = "README.md"
homepage = "https://github.com/nautobot/nautobot-plugin-device-lifecycle-mgmt"
repository = "https://github.com/nautobot/nautobot-plugin-device-lifecycle-mgmt"
keywords = ["nautobot", "nautobot-plugin"]
include = [
"LICENSE",
"README.md",
]
packages = [
{ include = "nautobot_device_lifecycle_mgmt" },
]
include = ["LICENSE", "README.md"]
packages = [{ include = "nautobot_device_lifecycle_mgmt" }]

[tool.poetry.dependencies]
python = ">=3.8,<3.12"
pycountry = "^22.3.5"
matplotlib = "^3.3.4"
nautobot = "^2.0.0"
drf-spectacular = "0.26.3"

[tool.poetry.dev-dependencies]
invoke = "*"
Expand Down Expand Up @@ -81,12 +75,16 @@ exclude = '''

[tool.pylint.master]
# Include the pylint_django plugin to avoid spurious warnings about Django patterns
load-plugins=["pylint_django", "pylint_nautobot", "pylint.extensions.no_self_use"]
ignore=["nautobot_device_lifecycle_mgmt/migrations"]
load-plugins = [
"pylint_django",
"pylint_nautobot",
"pylint.extensions.no_self_use",
]
ignore = ["nautobot_device_lifecycle_mgmt/migrations"]

[tool.pylint.basic]
# No docstrings required for private methods (Pylint default), or for test_ functions, or for inner Meta classes.
no-docstring-rgx="^(_|test_|Meta$)"
no-docstring-rgx = "^(_|test_|Meta$)"

[tool.pylint.messages_control]
# Line length is enforced by Black, so pylint doesn't need to check it.
Expand All @@ -106,9 +104,7 @@ notes = """,
XXX,
"""
[tool.pylint-nautobot]
supported_nautobot_versions = [
"2"
]
supported_nautobot_versions = ["2"]

[build-system]
requires = ["poetry_core>=1.0.0"]
Expand Down

0 comments on commit 44c2bd1

Please sign in to comment.