Mercurial > hg > svgsitemap
annotate setup.py @ 15:61038b4e7425
initial version with acceptable formatting
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Sun, 02 Jan 2011 13:55:49 -0800 |
parents | fc09a7ffb767 |
children | f50b4e4ad764 |
rev | line source |
---|---|
0 | 1 from setuptools import setup, find_packages |
2 import sys, os | |
3 | |
4 try: | |
5 description = file('README.txt').read() | |
6 except IOError: | |
7 description = '' | |
8 | |
15
61038b4e7425
initial version with acceptable formatting
Jeff Hammel <jhammel@mozilla.com>
parents:
3
diff
changeset
|
9 version = "0.1" |
0 | 10 |
11 setup(name='svgsitemap', | |
12 version=version, | |
3 | 13 description="a site map using PyGraphviz and svg", |
0 | 14 long_description=description, |
15 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
3 | 16 author='Jeff Hammel', |
17 author_email='jhammel@mozilla.com', | |
18 url='http://k0s.org/map.svg', | |
19 license="MPL", | |
0 | 20 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
21 include_package_data=True, | |
22 zip_safe=False, | |
23 install_requires=[ | |
24 # -*- Extra requirements: -*- | |
3 | 25 'WebOb', |
26 'PyGraphviz', | |
0 | 27 ], |
28 entry_points=""" | |
29 # -*- Entry points: -*- | |
30 [paste.app_factory] | |
31 main = svgsitemap.factory:factory | |
32 """, | |
33 ) | |
34 |