diff options
| author | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-01-16 07:04:55 -0600 |
|---|---|---|
| committer | Ian Cordasco <graffatcolmingov@gmail.com> | 2016-01-16 07:04:55 -0600 |
| commit | ef0e018fa2367188ba0aebbbc32897c63e6d4313 (patch) | |
| tree | e0308417a08f43733959a5fc2d212e75bfde5b76 | |
| parent | 4d86e44992291487a5303d5d65d5e0c84fcf393a (diff) | |
| download | flake8-ef0e018fa2367188ba0aebbbc32897c63e6d4313.tar.gz | |
Update setup.py for new entry-points and packages
Comment out mccabe because it is currently broken with flake8 3.0
| -rw-r--r-- | setup.py | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -45,17 +45,22 @@ setuptools.setup( maintainer="Ian Cordasco", maintainer_email="graffatcolmingov@gmail.com", url="https://gitlab.com/pycqa/flake8", - packages=["flake8", "flake8.options"], + packages=[ + "flake8", + "flake8.main", + "flake8.options", + "flake8.plugins", + ], install_requires=[ "pyflakes >= 0.8.1, < 1.1", "pep8 >= 1.5.7, != 1.6.0, != 1.6.1, != 1.6.2", - "mccabe >= 0.2.1, < 0.4", + # "mccabe >= 0.2.1, < 0.4", ], entry_points={ 'distutils.commands': ['flake8 = flake8.main:Flake8Command'], - 'console_scripts': ['flake8 = flake8.main:main'], + 'console_scripts': ['flake8 = flake8.main.cli:main'], 'flake8.extension': [ - 'F = flake8._pyflakes:FlakesChecker', + 'F = flake8.plugins.pyflakes:FlakesChecker', ], }, classifiers=[ |
