DISTUTILS
# setup.py file content
from distutils.core import setup
setup(name="foo", version="1.0",
summary="a few words about the package",
author="John Doe", author_email="
[email protected]",
license="BSD", url="http://www.example.com",
packages=["foo"])