Mercurial > hg > montage
comparison 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 |
comparison
equal
deleted
inserted
replaced
23:ac84c04a8255 | 24:4d1911743e82 |
---|---|
1 import os | |
1 from setuptools import setup, find_packages | 2 from setuptools import setup, find_packages |
2 import sys, os | |
3 | 3 |
4 version = '0.2.4' | 4 version = '0.3' |
5 | |
6 try: | |
7 description = file(os.path.join(os.path.dirname(__file__), 'README.txt')).read() | |
8 except: | |
9 description = '' | |
5 | 10 |
6 setup(name='montage', | 11 setup(name='montage', |
7 version=version, | 12 version=version, |
8 description="photogallery using decoupage", | 13 description="photogallery using decoupage", |
9 long_description="""\ | 14 long_description=description, |
10 """, | |
11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | 15 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers |
12 keywords='photo gallery decoupage', | 16 keywords='photo gallery decoupage', |
13 author='Jeff Hammel', | 17 author='Jeff Hammel', |
14 author_email='k0scist@gmail.com', | 18 author_email='k0scist@gmail.com', |
15 url='http://k0s.org/hg/montage', | 19 url='http://k0s.org/hg/montage', |