Slide 34
Slide 34 text
from distutils.core import setup
setup(
name = 'my-awesome-app',
scripts = ['bin/my-awesome-app'],
version = '0.1',
description = 'That thing I wrote',
author = 'Eric Chiang',
url = 'https://github.com/ericchiang/app',
download_url = 'https://github.com/ericcchiang/app/tarball/0.1',
keywords = ['webapp', 'awesome'],
install_requires = ["flask", "jinja2", "Psycopg2"],
)
A PyPI example