I'm having some problems trying to push my package to pypi.
Everything is fine and smooth but twine
doesn't upload text files.
You can find repo here: https://github.com/piotr-rarus/evobench
Pipeline is here: https://github.com/piotr-rarus/evobench/blob/master/.circleci/config.yml
Code uploads successfully, but I can' access text files located at evobench/discrete/isg/data
.
I would like to ship those files with a package.
Thanks for help <3
Update 1
I've tried to include package_data
:
package_data={
'evobench': ['*.txt', 'evobench/discrete/isg/data/*.txt']
},
include_package_data=True,
Doesn't work :/
Update 2
This works:
package_data={
'evobench.discrete.isg': ['data/*.txt']
},
include_package_data=True,