view setup.py @ 10:b02420253bfd default tip

add recomposition and a test for it
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 28 Jun 2011 18:39:18 -0700
parents 00266c7a7c3c
children
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = '0.0'

setup(name='urlmatch',
      version=version,
      description="match urls systematically",
      long_description='',
      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
      keywords='url',
      author='Jeff Hammel',
      author_email='jhammel@mozilla.com',
      url='http://k0s.org/mozilla/hg/urlmatch',
      license='MPL',
      py_modules=['urlmatch'],
      packages=[],
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
      ],
      entry_points="""
      # -*- Entry points: -*-
      """,
      )