from distutils.core import setup README = open('README').read() setup( name="flake8", license="MIT", version="0.3", description="code checking using pep8 and pyflakes", author="Tarek Ziade", author_email="tarek@ziade.org", url="http://bitbucket.org/tarek/flake8", packages=["flake8", "flake8.test"], scripts=["bin/flake8"], long_description=README, classifiers=[ "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Topic :: Software Development", "Topic :: Utilities", ])