You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I ran python setup.py build, I got an error message:
reading manifest template 'MANIFEST.in'
warning: no directories found matching 'koobdl\commands'
warning: no previously-included files matching '*.pyc' found anywhere in distribution
Looking at manifest.in, I modified the second line from graft koobdl/commands to kobodl/commands.
Because that's a package, it gets included in python setup.py sdist anyway because of find_packages(). If it had been templates, there would have been an issue!
When I ran python setup.py build, I got an error message:
reading manifest template 'MANIFEST.in'
warning: no directories found matching 'koobdl\commands'
warning: no previously-included files matching '*.pyc' found anywhere in distribution
Looking at manifest.in, I modified the second line from graft koobdl/commands to kobodl/commands.
graft kobodl/templates
graft kobodl/commands
global-exclude *.pyc
The text was updated successfully, but these errors were encountered: