Skip to content
Snippets Groups Projects
pyproject.toml 1.3 KiB
Newer Older
Anders Harrisson's avatar
Anders Harrisson committed
# See PEP 518 for the spec of this file
# https://www.python.org/dev/peps/pep-0518/

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name =  "netbox-awx-plugin"
Anders Harrisson's avatar
Anders Harrisson committed
version = "0.2.2"
Anders Harrisson's avatar
Anders Harrisson committed
authors = [
    {name = "Anders Harrisson", email = "anders.harrisson@gmail.com"},
]
description = "NetBox plugin for AWX integration."
readme = "README.md"

classifiers=[
    'Development Status :: 3 - Alpha',
    'Intended Audience :: Developers',
    'Natural Language :: English',
    "Programming Language :: Python :: 3 :: Only",
    'Programming Language :: Python :: 3.9',
    'Programming Language :: Python :: 3.10',
    'Programming Language :: Python :: 3.11',
    'Programming Language :: Python :: 3.12',
]

requires-python = ">=3.8.1"

[project.optional-dependencies]
test = [
    "black==24.3.0",
    "check-manifest==0.49",
    "flake8",
    "flake8-pyproject",
    "pre-commit==3.7.0",
    "pytest==8.1.1",
]

[project.urls]
Documentation = "https://github.com/aharrisson/netbox-awx-plugin/blob/main/README.md"
Source = "https://github.com/aharrisson/netbox-awx-plugin"
Tracker = "https://github.com/aharrisson/netbox-awx-plugin/issues"

[tool.black]
line-length = 120
target_version = ['py39', 'py310', 'py311', 'py312']

[tool.setuptools.package-data]
netbox_awx_plugin = ["templates/**"]