summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-06-20 08:35:30 +0000
committerCoprDistGit <infra@openeuler.org>2023-06-20 08:35:30 +0000
commite7732549ea9ab7730de07c8764893fc221cf9f5e (patch)
tree698019bd46841d6c28d15adaf595c10c474faf4f
parent145c4600467265b53f2fc4a8cd292afbff8c99b5 (diff)
automatic import of python-flake8-adjustable-complexityopeneuler20.03
-rw-r--r--.gitignore1
-rw-r--r--python-flake8-adjustable-complexity.spec319
-rw-r--r--sources1
3 files changed, 321 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index e69de29..48ab1f5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/flake8_adjustable_complexity-0.0.6.tar.gz
diff --git a/python-flake8-adjustable-complexity.spec b/python-flake8-adjustable-complexity.spec
new file mode 100644
index 0000000..2fb10bb
--- /dev/null
+++ b/python-flake8-adjustable-complexity.spec
@@ -0,0 +1,319 @@
+%global _empty_manifest_terminate_build 0
+Name: python-flake8-adjustable-complexity
+Version: 0.0.6
+Release: 1
+Summary: A flake8 extension that checks cyclomatic complexity and calculates max complexity limit in runtime
+License: MIT
+URL: https://github.com/best-doctor/flake8-adjustable-complexity
+Source0: https://mirrors.aliyun.com/pypi/web/packages/6f/92/f1083e663117a47acb88034f9cbbb955398c5edebd9c8500c87e96cd06b9/flake8_adjustable_complexity-0.0.6.tar.gz
+BuildArch: noarch
+
+Requires: python3-flake8
+
+%description
+# flake8-adjustable-complexity
+
+[![Build Status](https://github.com/best-doctor/flake8-adjustable-complexity/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/best-doctor/flake8-adjustable-complexity/actions/workflows/build.yml)
+[![Maintainability](https://api.codeclimate.com/v1/badges/544649e16b4cf6645ad3/maintainability)](https://codeclimate.com/github/best-doctor/flake8-adjustable-complexity/maintainability)
+[![Test Coverage](https://api.codeclimate.com/v1/badges/544649e16b4cf6645ad3/test_coverage)](https://codeclimate.com/github/best-doctor/flake8-adjustable-complexity/test_coverage)
+
+An extension for flake8 to report on too complex functions with bad variables names.
+
+Sometimes you want to use too generic variable name inside some function.
+It this case you want to be sure that the function is more simple that
+others, so a reader doesn't have to remember meaning of a variable
+together with other logic for a long time.
+
+This plugin calculates max allowed cyclomatic complexity for each function
+separately. Default is 7, and it is decreased by 2 for each variable from
+blacklist inside the function. If actual complexity overcomes max calculated
+complexity, the plugin reports an error.
+
+Currently, the following errors are reported:
+
+| Code | Description |
+| ------- | ----------- |
+| **CAC001** | `func` is too complex (`complexity` > `max allowed complexity`) |
+| **CAC002** | `func` is too complex (`complexity`). Bad variable names penalty is too high (`penalty`) |
+
+## Installation
+
+```terminal
+pip install flake8-adjustable-complexity
+```
+
+## Configuration
+
+The plugin has the following configuration options:
+
+* `--max-mccabe-complexity` (or `--max-adjustable-complexity`) - Max allowed cyclomatic complexity.
+* `--per-path-max-adjustable-complexity` - Per-path complexity settings.
+ The value of the option must be a comma-separated list of `<path>:<complexity>` pairs.
+* `--var-names-extra-blacklist` - Comma-separated list of bad variable names to blacklist.
+ Each variable will affect the max allowed complexity.
+* `--var-names-whitelist` - Comma-separated list of bad variable names to whitelist.
+
+All options also can be specified via `[flake8]` section of `setup.cfg`.
+
+## Example
+
+Sample file:
+
+```python
+# test.py
+
+def foo():
+ for vars in range(5):
+ for info in range(5):
+ for obj in range(5):
+ pass
+```
+
+Usage:
+
+```terminal
+$ flake8 test.py
+test.py:1:1: CAC001 foo is too complex (4 > 1)
+```
+
+## Contributing
+
+We would love you to contribute to our project. It's simple:
+
+1. Create an issue with bug you found or proposal you have.
+ Wait for approve from maintainer.
+1. Create a pull request. Make sure all checks are green.
+1. Fix review comments if any.
+1. Be awesome.
+
+Here are useful tips:
+
+* You can run all checks and tests with `make check`. Please do it before TravisCI does.
+* We use [BestDoctor python styleguide](https://github.com/best-doctor/guides/blob/master/guides/en/python_styleguide.md).
+* We respect [Django CoC](https://www.djangoproject.com/conduct/). Make soft, not bullshit.
+
+
+
+
+%package -n python3-flake8-adjustable-complexity
+Summary: A flake8 extension that checks cyclomatic complexity and calculates max complexity limit in runtime
+Provides: python-flake8-adjustable-complexity
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+%description -n python3-flake8-adjustable-complexity
+# flake8-adjustable-complexity
+
+[![Build Status](https://github.com/best-doctor/flake8-adjustable-complexity/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/best-doctor/flake8-adjustable-complexity/actions/workflows/build.yml)
+[![Maintainability](https://api.codeclimate.com/v1/badges/544649e16b4cf6645ad3/maintainability)](https://codeclimate.com/github/best-doctor/flake8-adjustable-complexity/maintainability)
+[![Test Coverage](https://api.codeclimate.com/v1/badges/544649e16b4cf6645ad3/test_coverage)](https://codeclimate.com/github/best-doctor/flake8-adjustable-complexity/test_coverage)
+
+An extension for flake8 to report on too complex functions with bad variables names.
+
+Sometimes you want to use too generic variable name inside some function.
+It this case you want to be sure that the function is more simple that
+others, so a reader doesn't have to remember meaning of a variable
+together with other logic for a long time.
+
+This plugin calculates max allowed cyclomatic complexity for each function
+separately. Default is 7, and it is decreased by 2 for each variable from
+blacklist inside the function. If actual complexity overcomes max calculated
+complexity, the plugin reports an error.
+
+Currently, the following errors are reported:
+
+| Code | Description |
+| ------- | ----------- |
+| **CAC001** | `func` is too complex (`complexity` > `max allowed complexity`) |
+| **CAC002** | `func` is too complex (`complexity`). Bad variable names penalty is too high (`penalty`) |
+
+## Installation
+
+```terminal
+pip install flake8-adjustable-complexity
+```
+
+## Configuration
+
+The plugin has the following configuration options:
+
+* `--max-mccabe-complexity` (or `--max-adjustable-complexity`) - Max allowed cyclomatic complexity.
+* `--per-path-max-adjustable-complexity` - Per-path complexity settings.
+ The value of the option must be a comma-separated list of `<path>:<complexity>` pairs.
+* `--var-names-extra-blacklist` - Comma-separated list of bad variable names to blacklist.
+ Each variable will affect the max allowed complexity.
+* `--var-names-whitelist` - Comma-separated list of bad variable names to whitelist.
+
+All options also can be specified via `[flake8]` section of `setup.cfg`.
+
+## Example
+
+Sample file:
+
+```python
+# test.py
+
+def foo():
+ for vars in range(5):
+ for info in range(5):
+ for obj in range(5):
+ pass
+```
+
+Usage:
+
+```terminal
+$ flake8 test.py
+test.py:1:1: CAC001 foo is too complex (4 > 1)
+```
+
+## Contributing
+
+We would love you to contribute to our project. It's simple:
+
+1. Create an issue with bug you found or proposal you have.
+ Wait for approve from maintainer.
+1. Create a pull request. Make sure all checks are green.
+1. Fix review comments if any.
+1. Be awesome.
+
+Here are useful tips:
+
+* You can run all checks and tests with `make check`. Please do it before TravisCI does.
+* We use [BestDoctor python styleguide](https://github.com/best-doctor/guides/blob/master/guides/en/python_styleguide.md).
+* We respect [Django CoC](https://www.djangoproject.com/conduct/). Make soft, not bullshit.
+
+
+
+
+%package help
+Summary: Development documents and examples for flake8-adjustable-complexity
+Provides: python3-flake8-adjustable-complexity-doc
+%description help
+# flake8-adjustable-complexity
+
+[![Build Status](https://github.com/best-doctor/flake8-adjustable-complexity/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/best-doctor/flake8-adjustable-complexity/actions/workflows/build.yml)
+[![Maintainability](https://api.codeclimate.com/v1/badges/544649e16b4cf6645ad3/maintainability)](https://codeclimate.com/github/best-doctor/flake8-adjustable-complexity/maintainability)
+[![Test Coverage](https://api.codeclimate.com/v1/badges/544649e16b4cf6645ad3/test_coverage)](https://codeclimate.com/github/best-doctor/flake8-adjustable-complexity/test_coverage)
+
+An extension for flake8 to report on too complex functions with bad variables names.
+
+Sometimes you want to use too generic variable name inside some function.
+It this case you want to be sure that the function is more simple that
+others, so a reader doesn't have to remember meaning of a variable
+together with other logic for a long time.
+
+This plugin calculates max allowed cyclomatic complexity for each function
+separately. Default is 7, and it is decreased by 2 for each variable from
+blacklist inside the function. If actual complexity overcomes max calculated
+complexity, the plugin reports an error.
+
+Currently, the following errors are reported:
+
+| Code | Description |
+| ------- | ----------- |
+| **CAC001** | `func` is too complex (`complexity` > `max allowed complexity`) |
+| **CAC002** | `func` is too complex (`complexity`). Bad variable names penalty is too high (`penalty`) |
+
+## Installation
+
+```terminal
+pip install flake8-adjustable-complexity
+```
+
+## Configuration
+
+The plugin has the following configuration options:
+
+* `--max-mccabe-complexity` (or `--max-adjustable-complexity`) - Max allowed cyclomatic complexity.
+* `--per-path-max-adjustable-complexity` - Per-path complexity settings.
+ The value of the option must be a comma-separated list of `<path>:<complexity>` pairs.
+* `--var-names-extra-blacklist` - Comma-separated list of bad variable names to blacklist.
+ Each variable will affect the max allowed complexity.
+* `--var-names-whitelist` - Comma-separated list of bad variable names to whitelist.
+
+All options also can be specified via `[flake8]` section of `setup.cfg`.
+
+## Example
+
+Sample file:
+
+```python
+# test.py
+
+def foo():
+ for vars in range(5):
+ for info in range(5):
+ for obj in range(5):
+ pass
+```
+
+Usage:
+
+```terminal
+$ flake8 test.py
+test.py:1:1: CAC001 foo is too complex (4 > 1)
+```
+
+## Contributing
+
+We would love you to contribute to our project. It's simple:
+
+1. Create an issue with bug you found or proposal you have.
+ Wait for approve from maintainer.
+1. Create a pull request. Make sure all checks are green.
+1. Fix review comments if any.
+1. Be awesome.
+
+Here are useful tips:
+
+* You can run all checks and tests with `make check`. Please do it before TravisCI does.
+* We use [BestDoctor python styleguide](https://github.com/best-doctor/guides/blob/master/guides/en/python_styleguide.md).
+* We respect [Django CoC](https://www.djangoproject.com/conduct/). Make soft, not bullshit.
+
+
+
+
+%prep
+%autosetup -n flake8_adjustable_complexity-0.0.6
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "\"/%h/%f\"\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "\"/%h/%f\"\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "\"/%h/%f\"\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "\"/%h/%f\"\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-flake8-adjustable-complexity -f filelist.lst
+%dir %{python3_sitelib}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Tue Jun 20 2023 Python_Bot <Python_Bot@openeuler.org> - 0.0.6-1
+- Package Spec generated
diff --git a/sources b/sources
new file mode 100644
index 0000000..6a2bd1f
--- /dev/null
+++ b/sources
@@ -0,0 +1 @@
+e7f461a315527c97235c45a5f4baf976 flake8_adjustable_complexity-0.0.6.tar.gz