How to Solve NameError: name 'setup' is not defined -- setuptools

Solution: Import the 'setup' module

# Add the following line to the top of your code
from setuptools import setup

 

For more information:
setuptools setup