comparison setup.py @ 20:cf19d2e129de

adding a basic README telling how to use
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 05 May 2010 11:59:39 -0700
parents 4a5b542a638c
children f088f0b54b55
comparison
equal deleted inserted replaced
19:4a5b542a638c 20:cf19d2e129de
1 from setuptools import setup, find_packages 1 from setuptools import setup, find_packages
2 2
3 version = '0.3.1' 3 try:
4 description = file('README.txt').read()
5 except IOError:
6 description = ''
7
8 version = '0.3.2'
4 9
5 setup(name='genshi_view', 10 setup(name='genshi_view',
6 version=version, 11 version=version,
7 description="paste template for a view using webob + genshi", 12 description="paste template for a view using webob + genshi",
8 long_description="""\ 13 long_description=description,
9 """,
10 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers 14 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
11 keywords='', 15 keywords='',
12 author='Jeff Hammel', 16 author='Jeff Hammel',
13 author_email='k0scist@gmail.com', 17 author_email='k0scist@gmail.com',
14 url='http://k0s.org/hg/genshi_view', 18 url='http://k0s.org/hg/genshi_view',