
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Dynamic CLI tool to manage project-specific commands using pyproject.toml configuration
ppcli
stands for pyproject CLI. It is a Python package designed to provide an easy way to specify and manage auxiliary commands within a pyproject.toml
file for any Python project.
The primary purpose of ppcli
is to allow developers to define and manage common project tasks, such as test, lint, and migration commands, directly within the pyproject.toml
file. This ensures that all project-specific commands are centralized and easily accessible.
You can install ppcli
via pip:
pip install ppcli
After installing ppcli, you can define your project-specific commands within your pyproject.toml file under the [tool.ppcli]
section.
[tool.ppcli]
lint="black --check --diff ."
fmt="black ."
clean = [
"find . -type d -name __pycache__ -empty -print0 | xargs --null --no-run-if-empty rmdir",
"coverage erase",
]
test = [
"clean",
"pytest --cov --blockage -x -s --no-header -ra",
]
To execute the defined commands, simply run the ppcli tool followed by the command name:
ppcli <command>
For example:
ppcli lint
ppcli fmt
ppcli test
Contributions are welcome! Please open an issue or a pull request to contribute.
This project is licensed under the MIT License. See the LICENSE file for more details.
FAQs
Dynamic CLI tool to manage project-specific commands using pyproject.toml configuration
We found that ppcli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.