# HG changeset patch # User k0s # Date 1263917972 18000 # Node ID 4d1911743e8290d3941e45290247fc32c18f98f2 # Parent ac84c04a825510002215c2476175835559d8750c start doing documentation diff -r ac84c04a8255 -r 4d1911743e82 README.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README.txt Tue Jan 19 11:19:32 2010 -0500 @@ -0,0 +1,11 @@ +montage +======= + +photogallery extension to `decoupage `_. + +montage provides an additional decopage formatter, ``/images``, that +is used to help format an image gallery (i.e. a directory full of +images) for display. + +montage provides additional templates to display a gallery of images +in various formats. diff -r ac84c04a8255 -r 4d1911743e82 setup.py --- a/setup.py Thu Jan 14 19:58:23 2010 -0500 +++ b/setup.py Tue Jan 19 11:19:32 2010 -0500 @@ -1,13 +1,17 @@ +import os from setuptools import setup, find_packages -import sys, os + +version = '0.3' -version = '0.2.4' +try: + description = file(os.path.join(os.path.dirname(__file__), 'README.txt')).read() +except: + description = '' setup(name='montage', version=version, description="photogallery using decoupage", - long_description="""\ -""", + long_description=description, classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers keywords='photo gallery decoupage', author='Jeff Hammel',