From 94143c2534c0af74b1983363a6ba7d7a70784dd7 Mon Sep 17 00:00:00 2001 From: mrthbe Date: Sun, 24 Feb 2013 13:12:02 -0500 Subject: [PATCH] removed flake8.cmd, no longer necessary since dependency on setuptools is not explicit --- MANIFEST.in | 2 +- docs/setuptools.rst | 6 +++--- scripts/flake8.cmd | 6 ------ 3 files changed, 4 insertions(+), 10 deletions(-) delete mode 100644 scripts/flake8.cmd diff --git a/MANIFEST.in b/MANIFEST.in index 9b622ad..68841a4 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,4 @@ include *.rst include CONTRIBUTORS.txt include LICENSE -recursive-include scripts flake8.* + diff --git a/docs/setuptools.rst b/docs/setuptools.rst index 6890964..d993bdf 100644 --- a/docs/setuptools.rst +++ b/docs/setuptools.rst @@ -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", diff --git a/scripts/flake8.cmd b/scripts/flake8.cmd deleted file mode 100644 index 57ec2fd..0000000 --- a/scripts/flake8.cmd +++ /dev/null @@ -1,6 +0,0 @@ -@setlocal enableextensions & python -x %~f0 %* & goto :EOF -# -*- mode: python -*- -from flake8.run import main - -if __name__ == '__main__': - main()