From 0d0b77f79dd2511d9422894193de11cbaf95e8e1 Mon Sep 17 00:00:00 2001 From: Tarek Ziade Date: Thu, 12 Aug 2010 14:44:56 +0200 Subject: [PATCH] Added a README --- README | 18 ++++++++++++++++++ setup.py | 2 ++ 2 files changed, 20 insertions(+) create mode 100644 README diff --git a/README b/README new file mode 100644 index 0000000..0a5eadd --- /dev/null +++ b/README @@ -0,0 +1,18 @@ +====== +Flake8 +====== + +Flake8 is just a merge of the PyFlakes and the pep8 projects into one single +script. + +It runs both tests by launching the single 'flake8' script, and also adds a +few features: + +- lines that contains a "# NOQA" comment at the end will not issue a warning +- more things to come.. + +Original projects: + +- pep8: http://github.com/jcrocholl/pep8/ +- PyFlakes: http://divmod.org/trac/wiki/DivmodPyflakes + diff --git a/setup.py b/setup.py index 4e73ccd..ccdef52 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,7 @@ from distutils.core import setup +README = open('README').read() + setup( name="flake8", license="MIT",