mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-29 10:36:53 +00:00
Added a README
This commit is contained in:
parent
0da965fa72
commit
0d0b77f79d
2 changed files with 20 additions and 0 deletions
18
README
Normal file
18
README
Normal file
|
|
@ -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
|
||||
|
||||
2
setup.py
2
setup.py
|
|
@ -1,5 +1,7 @@
|
|||
from distutils.core import setup
|
||||
|
||||
README = open('README').read()
|
||||
|
||||
setup(
|
||||
name="flake8",
|
||||
license="MIT",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue