Mercurial > hg > svgsitemap
changeset 3:fc09a7ffb767
fill out setup.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 28 Dec 2010 16:51:24 -0800 |
parents | 30d03e830354 |
children | 84344f9ed3f8 |
files | setup.py |
diffstat | 1 files changed, 7 insertions(+), 8 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py +++ b/setup.py @@ -5,31 +5,30 @@ try: description = file('README.txt').read() except IOError: description = '' version = "0.0" setup(name='svgsitemap', version=version, - description="", + description="a site map using PyGraphviz and svg", long_description=description, classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers - author='', - author_email='', - url='', - license="", + 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', - 'Paste', - 'PasteScript', + 'WebOb', + 'PyGraphviz', ], entry_points=""" # -*- Entry points: -*- [paste.app_factory] main = svgsitemap.factory:factory """, )