blob: c69328d9ab2ef53326f84955ba95883c20485645 [file] [log] [blame]
from distutils.core import setup
README = open('README').read()
setup(
name="flake8",
license="MIT",
version="1.1",
description="code checking using pep8 and pyflakes",
author="Tarek Ziade",
author_email="tarek@ziade.org",
url="http://bitbucket.org/tarek/flake8",
packages=["flake8", "flake8.tests"],
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",
])