flake8/setup.py
2010-08-12 15:34:39 +02:00

22 lines
624 B
Python
Executable file

from distutils.core import setup
README = open('README').read()
setup(
name="flake8",
license="MIT",
version="0.1",
description="code checking using pep8 and pyflakes",
author="Tarek Ziade",
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",
])