mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-05 04:36:52 +00:00
Create and enable the Pyflakes extension
This commit is contained in:
parent
701ec32e3f
commit
212364d89c
2 changed files with 51 additions and 1 deletions
5
setup.py
5
setup.py
|
|
@ -33,7 +33,10 @@ setup(
|
|||
],
|
||||
entry_points={
|
||||
'distutils.commands': ['flake8 = flake8.main:Flake8Command'],
|
||||
'console_scripts': ['flake8 = flake8.main:main']
|
||||
'console_scripts': ['flake8 = flake8.main:main'],
|
||||
'flake8.extension': [
|
||||
'F = flake8._pyflakes:FlakesChecker',
|
||||
],
|
||||
},
|
||||
tests_require=['nose'],
|
||||
test_suite='nose.collector',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue