From 9d9b8a51d07bdd0e13f5ac7def8865f2f7a93bce Mon Sep 17 00:00:00 2001 From: ryanmerolle Date: Fri, 23 Jun 2023 15:42:50 -0400 Subject: [PATCH] update pypi metadata --- setup.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c8faa97..030dece 100644 --- a/setup.py +++ b/setup.py @@ -38,9 +38,12 @@ setup( long_description=long_description, long_description_content_type="text/markdown", url="https://github.com/ryanmerolle/netbox-acls", + license="Apache 2.0", install_requires=[], + python_requires=">=3.10", packages=find_packages(), include_package_data=True, + keywords=["netbox", "netbox-plugin"], zip_safe=False, classifiers=[ "Development Status :: 5 - Production/Stable", @@ -49,7 +52,6 @@ setup( "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Intended Audience :: System Administrators", @@ -58,4 +60,8 @@ setup( "Topic :: System :: Networking", "Topic :: Internet", ], + project_urls={ + "Issues": "https://github.com/ryanmerolle/netbox-acls/issues", + "Source": "https://github.com/ryanmerolle/netbox-acls", + }, )