Metadata-Version: 2.4
Name: flake8-tergeo
Version: 26.6.10.0
Summary: flake8 plugin which keeps your code clean and tidy
Author-email: Kai Harder <kai.harder@sap.com>
License-Expression: Apache-2.0
Project-URL: Changelog, https://github.com/SAP/flake8-tergeo/blob/main/CHANGELOG.md
Project-URL: Issue Tracker, https://github.com/SAP/flake8-tergeo/issues
Keywords: flake8,plugin,quality,linter
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Framework :: Flake8
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Typing :: Typed
Requires-Python: <4,>=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: flake8<9,>=7
Requires-Dist: typing-extensions~=4.4
Requires-Dist: flake8-comprehensions==3.17.0
Requires-Dist: flake8-bugbear==25.11.29
Requires-Dist: flake8-builtins==3.1.0
Requires-Dist: flake8-simplify==0.30.0
Requires-Dist: flake8-pytest-style==2.2.0
Requires-Dist: flake8-typing-imports==1.17.0
Requires-Dist: packaging>=24
Requires-Dist: dependency_groups~=1.3
Requires-Dist: tomli~=2.2; python_version < "3.11"
Dynamic: license-file

[![REUSE status](https://api.reuse.software/badge/github.com/SAP/flake8-tergeo)](https://api.reuse.software/info/github.com/SAP/flake8-tergeo)
[![Coverage Status](https://coveralls.io/repos/github/SAP/flake8-tergeo/badge.svg)](https://coveralls.io/github/SAP/flake8-tergeo)

# flake8-tergeo

## About this project

flake8-tergeo is a flake8 plugin which adds many new rules to improve your code quality.
Out of the box it also brings a curated lists of other plugins without additional efforts needed.
In difference to other projects, the list of included plugins is rather small and actively maintained.

The included plugins and checks are opinionated, meaning that e.g. f-strings are preferred.
Therefore, checks to find other formatting methods are included but none, to find f-strings.

Also, code formatters like ``black`` and ``isort`` are recommended; therefore no code
formatting rules are included.

## Documentation

You can find the documentation [here](https://sap.github.io/flake8-tergeo/).

## Development
This project uses [`uv`](https://docs.astral.sh/uv/).
To install uv, and setup a venv for development, use:
```
python3.14 -m venv venv && \
    source venv/bin/activate && \
    pip install uv && uv sync --all-groups && \
    deactivate  && \
    rm -rf venv/
```
This will create a temporary `venv`, install uv to bootstrap the project
`.venv`, and remove the temporary `venv` again.
Then use `source .venv/bin/activate` to activate your venv.

## Release Actions
Execute the release action with the proper version.

## Support, Feedback, Contributing

This project is open to feature requests/suggestions, bug reports etc. via [GitHub issues](https://github.com/SAP/flake8-tergeo/issues). Contribution and feedback are encouraged and always welcome. For more information about how to contribute, the project structure, as well as additional contribution information, see our [Contribution Guidelines](CONTRIBUTING.md).

## Security / Disclosure
If you find any bug that may be a security problem, please follow our instructions at [in our security policy](https://github.com/SAP/flake8-tergeo/security/policy) on how to report it. Please do not create GitHub issues for security-related doubts or problems.

## Code of Conduct

We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone. By participating in this project, you agree to abide by its [Code of Conduct](https://github.com/SAP/.github/blob/main/CODE_OF_CONDUCT.md) at all times.

## Licensing

Copyright 2026 SAP SE or an SAP affiliate company and flake8-tergeo contributors. Please see our [LICENSE](LICENSE) for copyright and license information. Detailed information including third-party components and their licensing/copyright information is available [via the REUSE tool](https://api.reuse.software/info/github.com/SAP/flake8-tergeo).
