|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import pathlib |
|
|
|
|
|
from setuptools import setup |
|
|
|
|
|
|
|
|
setup( |
|
|
name="flake8-executable", |
|
|
description="A Flake8 plugin for checking executable permissions and shebangs.", |
|
|
long_description=pathlib.Path('README.md').read_text(), |
|
|
long_description_content_type="text/markdown", |
|
|
keywords="flake8 linter qa", |
|
|
author="Hong Xu", |
|
|
author_email="hong@topbug.net", |
|
|
url="https://github.com/xuhdev/flake8-executable", |
|
|
license='LGPL v3+', |
|
|
packages=["flake8_executable"], |
|
|
data_files=[("", ["COPYING", "COPYING.GPL"])], |
|
|
python_requires=">=3.6", |
|
|
install_requires=["flake8 >= 3.0.0"], |
|
|
classifiers=[ |
|
|
"Environment :: Console", |
|
|
"Framework :: Flake8", |
|
|
"Intended Audience :: Developers", |
|
|
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)", |
|
|
"Operating System :: OS Independent", |
|
|
"Programming Language :: Python", |
|
|
"Programming Language :: Python :: 3", |
|
|
"Programming Language :: Python :: 3.7", |
|
|
"Programming Language :: Python :: 3.8", |
|
|
"Programming Language :: Python :: 3.9", |
|
|
"Programming Language :: Python :: 3.10", |
|
|
"Programming Language :: Python :: 3.11", |
|
|
"Programming Language :: Python :: 3 :: Only", |
|
|
"Topic :: Software Development :: Libraries :: Python Modules", |
|
|
"Topic :: Software Development :: Quality Assurance", |
|
|
], |
|
|
entry_points={ |
|
|
"flake8.extension": ["EXE00 = flake8_executable:ExecutableChecker"] |
|
|
}, |
|
|
use_scm_version={'write_to': 'flake8_executable/_version.py'}, |
|
|
setup_requires=['setuptools_scm'] |
|
|
) |
|
|
|