Mercurial > hg > svgsitemap
comparison setup.py @ 3:fc09a7ffb767
fill out setup.py
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 28 Dec 2010 16:51:24 -0800 |
parents | 7a60bacc6a22 |
children | 61038b4e7425 |
comparison
equal
deleted
inserted
replaced
2:30d03e830354 | 3:fc09a7ffb767 |
---|---|
8 | 8 |
9 version = "0.0" | 9 version = "0.0" |
10 | 10 |
11 setup(name='svgsitemap', | 11 setup(name='svgsitemap', |
12 version=version, | 12 version=version, |
13 description="", | 13 description="a site map using PyGraphviz and svg", |
14 long_description=description, | 14 long_description=description, |
15 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 15 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
16 author='', | 16 author='Jeff Hammel', |
17 author_email='', | 17 author_email='jhammel@mozilla.com', |
18 url='', | 18 url='http://k0s.org/map.svg', |
19 license="", | 19 license="MPL", |
20 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | 20 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
21 include_package_data=True, | 21 include_package_data=True, |
22 zip_safe=False, | 22 zip_safe=False, |
23 install_requires=[ | 23 install_requires=[ |
24 # -*- Extra requirements: -*- | 24 # -*- Extra requirements: -*- |
25 'WebOb', | 25 'WebOb', |
26 'Paste', | 26 'PyGraphviz', |
27 'PasteScript', | |
28 ], | 27 ], |
29 entry_points=""" | 28 entry_points=""" |
30 # -*- Entry points: -*- | 29 # -*- Entry points: -*- |
31 [paste.app_factory] | 30 [paste.app_factory] |
32 main = svgsitemap.factory:factory | 31 main = svgsitemap.factory:factory |