comparison setup.py @ 5:0c2b1fe8f53f

update documentation a little
author k0s <k0scist@gmail.com>
date Sun, 14 Feb 2010 13:25:01 -0500
parents 28c7009bc463
children c576f5877459
comparison
equal deleted inserted replaced
4:28c7009bc463 5:0c2b1fe8f53f
1 import os
1 from setuptools import setup, find_packages 2 from setuptools import setup, find_packages
2 3
3 version = "0.1" 4 try:
5 filename = os.path.join(os.path.dirname(__file__), 'README.txt')
6 description = file(filename).read()
7 except:
8 description = ""
9
10 version = "0.1.1"
4 11
5 setup(name='wordstream', 12 setup(name='wordstream',
6 version=version, 13 version=version,
7 description="word streamer; conversational and dissociatively play with text with a command line and web interface", 14 description="word streamer; conversational and dissociatively play with text with a command line and web interface",
8 long_description=""" 15 long_description=description,
9 for a demo, see http://k0s.org/wordstream and http://k0s.org/dissociate
10
11 Additional documentation forthcoming, until the, the docs == the source
12 """,
13 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers 16 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
14 author='Jeff Hammel', 17 author='Jeff Hammel',
15 author_email='k0scist@gmail.com', 18 author_email='k0scist@gmail.com',
16 url='http://k0s.org/hg/wordstream', 19 url='http://k0s.org/hg/wordstream',
17 license="GPL", 20 license="GPL",