monitoring-plugins icon indicating copy to clipboard operation
monitoring-plugins copied to clipboard

Make project installable using pip?

Open markuslf opened this issue 2 years ago • 3 comments

Describe the solution you'd like

Including setup.py?

Additional context

No response

markuslf avatar Jun 09 '23 12:06 markuslf

I managed to use this for the lib repository:`

from distutils.core import setup
setup(name='lib',
      version='20230609dev3',
      package_dir={'lib':''}
      )

I'm not sure if pip caches the version even if one uses the commit. If it does maybe there is a trick for main or it needs to be incremented with every commit. For rcc.exe run there is --force option but this is expensive as all dependencies get rebuild.

slalomsk8er avatar Jun 09 '23 16:06 slalomsk8er

Thanks for your input. I will do some tests sometime soon.

markuslf avatar Jun 12 '23 13:06 markuslf

Also see https://github.com/Linuxfabrik/lib/issues/80

markuslf avatar Aug 08 '23 08:08 markuslf