Here is a little library that I'm trying to make available on PyPi for others to use.
https://github.com/rojavacrypto/python-libbitcoin
I use this command to upload the package:
$ python setup.py sdist bdist_wheel upload
I also tried this:
$ python setup.py sdist bdist_egg upload
Both seem to run fine without errors, and it's even listed on PyPi
But for some reason when I try to pip install on Ubuntu, it gives me an error.
# pip3 install libbitcoin
Collecting libbitcoin
Could not find a version that satisfies the requirement libbitcoin (from versions: )
No matching distribution found for libbitcoin
Please help me with this.