So i have created this package called footyplots and have uploaded it to PyPi. It has installed successfully on my machine.
Here is my setup file.
Here is the error when I am importing it.

I don't know what's wrong. Can somebody help.
Your setup.py is missing the packages argument to the setuptools.setup function call. You might also want to double check the package_dir argument, you might not need it at all.
Try:
packages=['footyplots']packages=setuptools.find_packages()packages=['footyplots'] to the setup function ?
setup.pyis missing thepackagesargument tosetuptools.setupfunction call. -- And seems like you don't need thepackage_dirargument.packages='footyplots'and removepackage_dir.