I created package, and deployed it to a private pypi service.
The source package contains a README.md
:
tar -tzf client/dist/my-api-client-0.1.0.tar.gz | grep README
my-api-client-0.1.0/README.md
But when I install it with
pip install --pre --extra-index-url https://pypi.myservice.com my-api-client
I get python sources, but the README.md
does not appear anywhere under site-packages.
I tried forcing the source install with --no-binary :all:
, but that didn't seem to make any difference.
Do I need some option to pip
to install it? Or am I doing something wrong entirely?