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()