1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
"""Setup script.
Run "python3 setup --help-commands" to list all available commands and their
descriptions.
"""
import sys
from subprocess import call
from setuptools import Command, find_packages, setup
class Doctest(Command):
"""Run Sphinx doctest."""
if sys.argv[-1] == 'test':
print('Running examples in documentation')
call('make doctest -C docs/', shell=True)
class Linter(Command):
"""Run several code linters."""
description = 'Run many code linters. It may take a while'
user_options = []
def __init__(self, *args, **kwargs):
"""Define linters and a message about them."""
super().__init__(*args, **kwargs)
self.linters = ['pep257', 'pyflakes', 'mccabe', 'isort', 'pep8',
'pylint']
self.extra_msg = 'It may take a while. For a faster version (and ' \
'less checks), run "quick_lint".'
def initialize_options(self):
"""For now, options are ignored."""
pass
def finalize_options(self):
"""For now, options are ignored."""
pass
def run(self):
"""Run pylama and radon."""
files = 'tests setup.py pyof'
print('running pylama with {}. {}'.format(', '.join(self.linters),
self.extra_msg))
cmd = 'pylama -l {} {}'.format(','.join(self.linters), files)
call(cmd, shell=True)
print('Low grades (<= C) for Cyclomatic Complexity:')
call('radon cc --min=C ' + files, shell=True)
print('Low grades (<= C) for Maintainability Index:')
call('radon mi --min=C ' + files, shell=True)
class FastLinter(Linter):
"""Same as Linter, but without the slow pylint."""
description = 'Same as "lint", but much faster (no pylama_pylint).'
def __init__(self, *args, **kwargs):
"""Remove slow linters and redefine the message about the rest."""
super().__init__(*args, **kwargs)
self.linters.remove('pylint')
self.extra_msg = 'This a faster version of "lint", without pylint. ' \
'Run the slower "lint" after solving these issues:'
setup(name='python-openflow',
version='1.1.0a0',
description='Library to parse and generate OpenFlow messages',
url='http://github.com/kytos/python-openflow',
author='Kytos Team',
author_email='of-ng-dev@ncc.unesp.br',
license='MIT',
test_suite='tests',
packages=find_packages(exclude=['tests', '*v0x02*']),
cmdclass={
'lint': Linter,
'quick_lint': FastLinter
},
zip_safe=False)
|