Mercurial > hg > urlmatch
view setup.py @ 4:23be092e6099
make this executable
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Fri, 17 Jun 2011 10:40:51 -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: -*- """, )