from setuptools import setup, find_packages name = "topp.helpers" setup( name = name, version = "1.0", author = "", author_email = "", description = "ZC Buildout recipe to add entries to PATH and hack distutils scripts", long_description = open('README.txt').read(), license = "GPL", keywords = "", url='http://svn.zope.org/'+name, packages = find_packages(), include_package_data = True, data_files = [('.', ['README.txt'])], install_requires = ['zc.buildout', 'setuptools'], dependency_links = ['http://download.zope.org/distribution/'], entry_points = {'zc.buildout': ['addbinpath = topp.helpers.addbinpath:Recipe', 'fixlibsearch = topp.helpers.fixlibsearch:Recipe']}, )