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
|
# -*- coding: utf-8 -*-
"""Install package."""
from setuptools import setup
setup(
name='pytest-flake8',
version='1.1.1',
description='pytest plugin to check FLAKE8 requirements',
long_description=open("README.rst").read(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
],
license="BSD License",
author='Thorsten Lockert',
author_email='tholo@sigmasoft.com',
url='https://github.com/tholo/pytest-flake8',
py_modules=[
'pytest_flake8',
],
entry_points={
'pytest11': ['flake8 = pytest_flake8'],
},
install_requires=[
'flake8>=4.0',
'pytest>=7.0',
],
)
|