blob: 8391af57e00c171ddf9a9195cf81136d7deec9b6 [file] [log] [blame]
# -*- coding: utf-8 -*-
from __future__ import with_statement
from setuptools import setup
def get_version(fname='flint_mccabe.py'):
with open(fname) as f:
for line in f:
if line.startswith('__version__'):
return eval(line.split('=')[-1])
def get_long_description():
descr = []
for fname in ('README.rst',):
with open(fname) as f:
descr.append(f.read())
return '\n\n'.join(descr)
setup(
name='flint-mccabe',
version=get_version(),
description="McCabe checker, plugin for flint",
long_description=get_long_description(),
keywords='flint mccabe',
author='Florent Xicluna',
author_email='florent.xicluna@gmail.com',
url='https://github.com/flintwork/flint-mccabe',
license='Expat license',
py_modules=['flint_mccabe'],
zip_safe=False,
install_requires=[
'setuptools',
],
entry_points={
'flint.extension': [
'C90 = flint_mccabe:McCabeChecker',
],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
],
)