A:\repos\BinaryCounters> check-manifest --create
I run the above command, and it gives me this error:
some files listed as being under source control are missing:
BinaryCounters.py
['c:\\program files\\python36\\python.exe', 'setup.py', 'sdist', '-d', 'C:\\Users\\pk\\AppData\\Local\\Temp\\check-manifest-jdugbjbj-sdist'] failed (status 1):
running sdist
running egg_info
error: error in 'egg_base' option: 'src' does not exist or is not a directory
however my project structure looks correct:
and my setup.py looks like this:
setup(
..
py_modules=["BinaryCounters"],
package_dir={'': 'src'},
..
)
I'm unsure what I could have missed.