removed flake8.cmd, no longer necessary since dependency on setuptools is not explicit

This commit is contained in:
mrthbe 2013-02-24 13:12:02 -05:00
parent 0a14b2f855
commit 94143c2534
3 changed files with 4 additions and 10 deletions

View file

@ -1,4 +1,4 @@
include *.rst
include CONTRIBUTORS.txt
include LICENSE
recursive-include scripts flake8.*

View file

@ -1,9 +1,9 @@
Setuptools integration
======================
If setuptools is available, Flake8 provides a command that checks the
Python files declared by your project. To use it, add flake8 to your
setup_requires::
Flake8 now depends on setuptools and its installation enables a command
that checks the Python files declared by your project. To use it, add
flake8 to your setup_requires::
setup(
name="project",

View file

@ -1,6 +0,0 @@
@setlocal enableextensions & python -x %~f0 %* & goto :EOF
# -*- mode: python -*-
from flake8.run import main
if __name__ == '__main__':
main()