Mercurial > hg > webcalc
comparison setup.py @ 1:12ac99c240ca default tip
* add documentation
* add 1..10 autostep feature
* bump version
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Wed, 10 Mar 2010 17:48:11 -0500 |
parents | 1eea6356d2e5 |
children |
comparison
equal
deleted
inserted
replaced
0:1eea6356d2e5 | 1:12ac99c240ca |
---|---|
1 from setuptools import setup, find_packages | 1 from setuptools import setup, find_packages |
2 import os | |
2 | 3 |
3 version = "0.1" | 4 # get the description from the README |
5 try: | |
6 filename = os.path.join(os.path.dirname(__file__), 'README.txt') | |
7 description = file(filename).read() | |
8 except: | |
9 description = '' | |
10 | |
11 version = "0.1.1" | |
4 | 12 |
5 setup(name='webcalc', | 13 setup(name='webcalc', |
6 version=version, | 14 version=version, |
7 description="web-based calculator", | 15 description="web-based calculator", |
8 long_description=""" | 16 long_description=description, |
9 """, | |
10 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | 17 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers |
11 author='Jeff Hammel', | 18 author='Jeff Hammel', |
12 author_email='k0scist@gmail.com', | 19 author_email='k0scist@gmail.com', |
13 url='', | 20 url='', |
14 license="GPL", | 21 license="GPL", |