view setup.py @ 4:28c7009bc463

update setup.py
author k0s <k0scist@gmail.com>
date Fri, 12 Feb 2010 12:39:14 -0500
parents e21f53582267
children 0c2b1fe8f53f
line wrap: on
line source

from setuptools import setup, find_packages

version = "0.1"

setup(name='wordstream',
      version=version,
      description="word streamer; conversational and dissociatively play with text with a command line and web interface",
      long_description="""
for a demo, see http://k0s.org/wordstream and http://k0s.org/dissociate

Additional documentation forthcoming, until the, the docs == the source
""",
      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      author='Jeff Hammel',
      author_email='k0scist@gmail.com',
      url='http://k0s.org/hg/wordstream',
      license="GPL",
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
         'WebOb',	
         'Paste',
         'PasteScript',
         'genshi'
      ],
      entry_points="""
      # -*- Entry points: -*-
      [paste.app_factory]
      wordstream = wordstream.factory:factory

      [console_scripts]
      wordstream = wordstream.main:main
      dissociate = wordstream.dissociate:main
      """,
      )