view setup.py @ 9:825833a5c4a7 default tip

update metadata
author Jeff Hammel <k0scist@gmail.com>
date Tue, 03 Nov 2020 08:18:53 -0800
parents c95f1dfed329
children
line wrap: on
line source

from setuptools import setup, find_packages

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

version = "0.2.2"

setup(name='commentator',
      version=version,
      description="WSGI commenting middleware",
      long_description=description,
      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/commentator',
      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]
      commentator = commentator.example:factory
      captcha_comments = commentator.example:captcha_factory
      """,
      )