The setup.py file in a Python package I\'ve sent to pip:
setup.py
#!/usr/bin/env python from distutils.core import setup setup( #...... long_descri
I needed to create MANIFEST.in with the following content:
MANIFEST.in
include README.md include LICENSE.txt