Skip to content

Commit 83fc824

Browse files
committedMar 30, 2021
remove flake8 setuptools command
1 parent 00f9208 commit 83fc824

File tree

5 files changed

+0
-167
lines changed

5 files changed

+0
-167
lines changed
 

‎docs/source/internal/start-to-finish.rst

-15
Original file line numberDiff line numberDiff line change
@@ -47,21 +47,6 @@ both cases, however, you end up in :func:`flake8.main.cli.main`. This is the
4747
primary way that users will end up starting Flake8. This function creates an
4848
instance of |Application|.
4949

50-
via Setuptools
51-
--------------
52-
53-
If you're invoking |Flake8| from your ``setup.py`` then you actually end up in
54-
:meth:`flake8.main.setuptools_command.Flake8.run`. This then collects the
55-
files that are included in the package information and creates an instance of
56-
|Application|.
57-
58-
via Git or Mercurial
59-
--------------------
60-
61-
In both cases, they call their respective ``hook`` functions which create
62-
instances of |Application|.
63-
64-
6550
Application Logic
6651
=================
6752

‎docs/source/user/index.rst

-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88

99
- invoked via Python
1010

11-
- called by Git or Mercurial on or around committing
12-
1311
This guide will cover all of these and the nuances for using |Flake8|.
1412

1513
.. note::

‎setup.cfg

-2
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,6 @@ python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
5656
where = src
5757

5858
[options.entry_points]
59-
distutils.commands=
60-
flake8 = flake8.main.setuptools_command:Flake8
6159
console_scripts =
6260
flake8 = flake8.main.cli:main
6361
flake8.extension =

‎src/flake8/main/setuptools_command.py

-115
This file was deleted.

‎tests/unit/test_setuptools_command.py

-33
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.