from setuptools import setup, find_packages from finddata import find_package_data setup( name="py", version="0.8.0-alpha2", description="py.test and the py lib", long_description="""\ The py lib is a development support library featuring py.test, an interactive testing tool which supports unit-testing with practically no boilerplate.""", url="http://codespeak.net/py", author="Holger Krekel & others", author_email="hpk@merlinux.de", license="MIT license", download_url="http://codespeak.net/download/py/py-0.8.0-alpha2.tar.gz", #install_requires= ["docutils >= 0.3.8"], packages=find_packages(), package_data=find_package_data(), scripts=['py/bin/_findpy.py', 'py/bin/_makepyrelease.py', 'py/bin/py.cleanup', 'py/bin/py.countloc', 'py/bin/py.lookup', 'py/bin/py.rest', 'py/bin/py.test', 'py/bin/pytest.cmd'], )