Reputation: 111
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.
Upvotes: 1
Views: 1281
Reputation: 580
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()
Upvotes: 2