Mercurial > hg > montage
diff setup.py @ 24:4d1911743e82
start doing documentation
author | k0s <k0scist@gmail.com> |
---|---|
date | Tue, 19 Jan 2010 11:19:32 -0500 |
parents | 58cd02972b74 |
children | f3b6bf903499 |
line wrap: on
line diff
--- 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',