We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Even if the only improvement made was to figure out how to make package_data work on directories, that would be huge.
The text was updated successfully, but these errors were encountered:
We could use something like
joinedupnames = [os.path.join(dirpath,filename) for dirpath, _dirname, filenames in os.walk('daemon/static/lib/') for filename in filenames]
earlier in setup.py and then refer to joinedupnames in the package data.
Sorry, something went wrong.
Could we list the files in MANIFEST.in and then, in setup.py, set include_package_data=True?
MANIFEST.in
include_package_data=True
That would still leave us the problem of defining files when we really want to define folders, right?
No branches or pull requests
Even if the only improvement made was to figure out how to make package_data work on directories, that would be huge.
The text was updated successfully, but these errors were encountered: