Closed cmutel closed 1 year ago
this should have been fixed with:
does your setup.cfg specify "root" project folder as the place to find packages?
45 │ zip_safe = False
46 │ packages = find_namespace:
47 │ include_package_data = True
48 │ package_dir =
49 ~ │ = .
and:
63 │ [options.packages.find]
64 │ where = .
65 │ exclude =
66 │ tests
One can see this by extracting the tarball after
python -m build
or by runningpip install . -vvv | grep adding
. Only thedist-info
stuff is added.There is something in the
setup.cfg
file, but after playing with thepackages = find:
or other options I can't make much progress, and the setuptools user guide isn't much help.@tngTUDOR Any ideas?