view setup.py @ 2:1892dd7d8748 default tip

py3
author Jeff Hammel <k0scist@gmail.com>
date Tue, 03 Nov 2020 09:59:20 -0800
parents a12647395076
children
line wrap: on
line source

from setuptools import setup, find_packages

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

version = "0.1"

setup(name='relocator',
      version=version,
      description="change Location field in responses using WSGI 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/relocator',
      license="MPL",
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
         'WebOb',
      ]
)