Skip to main content

No project description provided

Project description

Static Badge codecov

Poetry-Asterisk

This library performs auto change dependency version to "*". You can specify 3 parameters for detail setup.

Installation

You can install this library this way:

poetry add poetry-asterisk

or with pip:

pip install poetry-asterisk

Usage

Just run:

pasterisk

It has arguments:

  • exclude_packages: specify what packages skip. Default: None
  • exclude_groups: specify what groups skip (dev, lint, etc.). Default: None
  • path_to_pyproject: path to the pyproject.toml. By default asterisk searches in the root directory.

Advanced example:

pasterisk --exclude_packages "pytest, orjson" --exclude_groups "lint" --path_to_pyproject ./pyproject.toml

Example of work

pyproject.toml before update.

[tool.poetry]
name = "test"
version = "0.0.1"
description = ""
authors = ["awesome man"]
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
pydantic = "^2.4.2"

[tool.poetry.group.test.dependencies]
typing-extensions = "^4.8.0"
pytest = "^7.4.3"

[tool.poetry.group.lint.dependencies]
ruff = "^0.1.2"

command:

pasterisk --exclude_packages "pytest" --exclude_groups "lint"

pyproject.toml after update. We didn't touched pytest and the whole lint group

[tool.poetry]
name = "test"
version = "0.0.1"
description = ""
authors = ["awesome man"]
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
pydantic = "*"

[tool.poetry.group.test.dependencies]
typing-extensions = "*"
pytest = "^7.4.3"

[tool.poetry.group.lint.dependencies]
ruff = "^0.1.2"

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

poetry_asterisk-0.1.1.tar.gz (3.2 kB view hashes)

Uploaded Source

Built Distribution

poetry_asterisk-0.1.1-py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page