view setup.py @ 2:1f5233951a43

move some documentation around
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 23 Dec 2010 14:09:48 -0800
parents 0613e2bb0ebe
children
line wrap: on
line source

from setuptools import setup, find_packages

try:
    description = file('README.txt').read()
except IOError: 
    description = ''

version = "0.0"

setup(name='flowerbed',
      version=version,
      description="website creator and WSGI lab",
      long_description=description,
      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      author='Jeff Hammel',
      author_email='jhammel@mozilla.com',
      url='http://k0s.org/',
      license="",
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
         'WebOb',
         'genshi',
         'wsgiblob'
      ],
      entry_points="""
      # -*- Entry points: -*-
      """,
      )