Mercurial > hg > svgsitemap
view setup.py @ 21:1b9545d5158a
add a screenshot
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sun, 02 Jan 2011 21:17:23 -0800 |
parents | f9cf249dd512 |
children | ccd73b01ba79 |
line wrap: on
line source
from setuptools import setup, find_packages import sys, os try: description = file('README.txt').read() except IOError: description = '' version = "0.1.2" setup(name='svgsitemap', version=version, description="a site map using PyGraphviz and svg", long_description=description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers author='Jeff Hammel', author_email='jhammel@mozilla.com', url='http://k0s.org/map.svg', license="MPL", packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- 'WebOb', 'PyGraphviz', ], entry_points=""" # -*- Entry points: -*- [paste.app_factory] main = svgsitemap.factory:factory """, )