Could Not Upload Csv File To Test.pypi.org
I am trying to upload a simple python package to PypI. For testing this I first uploaded to test.pypi.org. When I install this package with pip and use it, I get the error FileNotF
Solution 1:
Try this:
packages=['spamclassifier'],
package_dir={'spamclassifier': 'spamclassifier'},
package_data={'spamclassifier': ['data/*']},
include_package_data=True
Keep everything else constant. Hope it helps
Post a Comment for "Could Not Upload Csv File To Test.pypi.org"