Mercurial > hg > SimpleWiki
diff setup.py @ 0:d5102c881cb5
initial commit
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 07 Sep 2010 17:50:04 -0700 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Tue Sep 07 17:50:04 2010 -0700 @@ -0,0 +1,35 @@ +from setuptools import setup, find_packages + +try: + description = file('README.txt').read() +except IOError: + description = '' + +version = "0.0" + +setup(name='SimpleWiki', + version=version, + description="an example wiki with genshi", + 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/mozilla/craft/', + license="", + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), + include_package_data=True, + zip_safe=False, + install_requires=[ + # -*- Extra requirements: -*- + 'WebOb', + 'Paste', + 'PasteScript', + 'genshi' + ], + entry_points=""" + # -*- Entry points: -*- + [paste.app_factory] + SimpleWiki = SimpleWiki.factory:factory + """, + ) +