#!/usr/bin/env python # # Setup script for the effbot.org library # $Id: setup.py 307 2004-12-06 20:06:33Z fredrik $ # # Usage: python setup.py install # from distutils.core import setup try: # add classifiers and download_url syntax to distutils from distutils.dist import DistributionMetadata DistributionMetadata.classifiers = None DistributionMetadata.download_url = None except: pass setup( name="effbot.org", version="0.2-20050530", author="Fredrik Lundh", author_email="fredrik@pythonware.com", url="http://effbot.org/zone/index.htm", description="The effbot.org library", long_description="Assorted support modules and utilities from effbot.org", download_url="http://effbot.org/downloads#effbot.org", license="Python (MIT style)", packages=["effbot", "effbot.org"], platforms="Python 2.1 and later.", )