Skip to content

Instantly share code, notes, and snippets.

@GideonBear
Created December 28, 2022 11:30
Show Gist options
  • Save GideonBear/7fc1d5894c9b8588c8269d2ad8eebb02 to your computer and use it in GitHub Desktop.
Save GideonBear/7fc1d5894c9b8588c8269d2ad8eebb02 to your computer and use it in GitHub Desktop.
flake8-num-positional-args
[tool.poetry]
name = "flake8-num-positionl-args"
version = "0.0.2"
description = "flake8 plugin for check num of positional args."
license = "MIT"
authors = ["Yasu_umi <yasu.umi.19910101@gmail.com>"]
readme = "README.md"
packages = [
{ include = "flake8_num_positionl_args", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.9"
flake8 = "^5.0.4"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.3"
mypy = "^0.982"
black = "^22.10.0"
isort = "^5.10.1"
[tool.poetry.plugins]
[tool.poetry.plugins."flake8.extension"]
X = "flake8_num_positionl_args:NumPositionalArgsChecker"
[tool.black]
line-length = 119
[tool.isort]
line_length = 119
multi_line_output = 3
include_trailing_comma = true
overwrite_in_place = true
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# -*- coding: utf-8 -*-
from setuptools import setup
package_dir = \
{'': 'src'}
packages = \
['flake8_num_positionl_args']
package_data = \
{'': ['*']}
install_requires = \
['flake8>=5.0.4,<6.0.0']
entry_points = \
{'flake8.extension': ['X = flake8_num_positionl_args:NumPositionalArgsChecker']}
setup_kwargs = {
'name': 'flake8-num-positionl-args',
'version': '0.0.2',
'description': 'flake8 plugin for check num of positional args.',
'long_description': '# Flake8 num of positional args plugin\n\nCheck for num of positional args.\nThis module provides a plugin for `flake8`, the Python code checker.\n\n\n## Installation\n\nYou can install or upgrade `flake8-num-positionl-args` with these commands\n\n```bash\npip install flake8-num-positionl-args\n```\n\n\n## Plugin for Flake8\n\nWhen both `flake8` and `flake8-num-positionl-args` are installed, the plugin is available in `flake8`',
'author': 'Yasu_umi',
'author_email': 'yasu.umi.19910101@gmail.com',
'maintainer': 'None',
'maintainer_email': 'None',
'url': 'None',
'package_dir': package_dir,
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'entry_points': entry_points,
'python_requires': '>=3.9,<4.0',
}
setup(**setup_kwargs)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment