When running both versioneer install and versioneer install --no-vendor it returns:
FileNotFoundError: [Errno 2] No such file or directory: 'setup.py'
here's my pyproject.toml:
[build-system]
requires = ["setuptools", "versioneer[toml]"]
build-backend = "setuptools.build_meta"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "src/daylio_to_md/_version.py"
versionfile_build = "daylio_to_md/_version.py"
tag_prefix = "daylio_to_md-"
parentdir_prefix = "daylio_to_md-"
versioneer correctly puts files in place, it's just that it complains about missing setup.py at the end.
When running both
versioneer installandversioneer install --no-vendorit returns:FileNotFoundError: [Errno 2] No such file or directory: 'setup.py'here's my pyproject.toml:
versioneer correctly puts files in place, it's just that it complains about missing setup.py at the end.