#!/usr/bin/env python """Setup script for the amazon module.""" from distutils.core import setup setup (# Distribution meta-data name = "amazon", version = "0.65", description = "A Python wrapper for the Amazon web API", author = "Michael Josephson", author_email = "mike@josephson.org", url = "http://www.josephson.org/projects/pyamazon/", # Description of the modules and packages in the distribution py_modules = ['amazon'], )