Creating a setup.py File

We'll cover the following...

We will start out by creating a super simple setup.py script. Here’s a bare-bones one:

Press + to interact
from distutils.core import setup
setup(name='mymath',
version='0.1',
packages=['mymath', 'mymath.adv'],
)

This is something you might write for a package ...

Access this course and 1400+ top-rated courses and projects.