79515069

Date: 2025-03-17 15:56:45
Score: 2
Natty:
Report link

I was facing the same issue... I was able to resolve it using Pip install issue with egg fragments that lead to an UNKNOWN installation of a package

create a file called setup.py inside your .tar.gz package with the following content:

from setuptools import setup, find_packages

setup(name='netboxlabs-diode-netbox-plugin',
      version='0.6.0',
      packages=find_packages(),
     )
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: The_Freakquency