rcw-2 / python-digikamdb

Python library to access Digikam metadata
MIT License
11 stars 0 forks source link

_version.py does not exist #4

Closed pknag closed 7 months ago

pknag commented 7 months ago

I was looking for a python interface to digikamdb and this seems to fit the bill. However, import fails since digikamdb/_version.py does not exist. It is imported in init.py Probably a simple mistake.

rcw-2 commented 7 months ago

_version.py is automatically generated during package build (the version is taken from tags), so it is not present in the raw source. You could do something like python -m build -s or pip install -e . to force generation. Regards, Ralph

pknag commented 7 months ago

Thanks. Learned something new. I see it is done by setuptools.