No project description provided
Project description
pip-split-requirements
Split a pip requirement files according to regular expression patterns rules.
Table of Contents
Installation
pipx install pip-split-requirements
Quick start
Assume the following requirements.txt
:
--find-links wheelhouse
pkga
git+https://github.com/some/project
pkgb
Running
pip-split-requirements -g slow:git requirements.txt
Will create requirementsgroup-slow.txt
:
--find-links wheelhouse
git+https://github.com/some/project
and requirementsgroup-other.txt
:
--find-links wheelhouse
pkga
pkgb
CLI Usage
Usage: pip-split-requirements [OPTIONS] REQUIREMENTS_FILE...
Split a pip requirements file into multiple files according to patterns.
Comment lines are ignored. Option lines are emitted in all groups.
Arguments:
REQUIREMENTS_FILE... [required]
Options:
-g, --group-spec TEXT Group specifications in form name:pattern.
-p, --prefix TEXT Each requirements group file will be named
{prefix}-{group_name}.txt. The prefix can
contain path separators, to generate files
into a chosen directory. [default:
requirementsgroup]
--default-group / --no-default-group
Automatically append a group named 'other',
matching all lines not matched by other
groups. [default: default-group]
--help Show this message and exit.
Usage as a pre-commit hook
The following section of .pre-commit-config.yaml
will split requirements.txt
into a
group named vcs
with requirements containing the word git
and another group with
everything else, as build/reqgroup-*.txt
.
- repo: https://github.com/sbidoul/pip-split-requirements
rev: v0.1.0
hooks:
- id: pip-split-requirements
files: ^requirements\.txt$
args:
- --prefix=build/reqgroup
- --group-spec=vcs:.*git
License
pip-split-requirements
is distributed under the terms of the
MIT license.
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
Built Distribution
File details
Details for the file pip_split_requirements-0.3.0.tar.gz
.
File metadata
- Download URL: pip_split_requirements-0.3.0.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a9ca89c0e1ecefac016b52f5b1a20d1b63983a9b809834dab4c9d541d474951c |
|
MD5 | 303a89549128f1268fcbb4ae4d970c74 |
|
BLAKE2b-256 | b63a564f76472351c4aa7e786722a826419503a8297d37e94604fbc590e6973a |
File details
Details for the file pip_split_requirements-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: pip_split_requirements-0.3.0-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c73bbc5454813d1f88d19959b8257ede1c86de1a366906eabd941690dc428bbe |
|
MD5 | de5e18c2d5f31969321b5e2b2bd7deb4 |
|
BLAKE2b-256 | 05873603147e32206e545ec444f379783958aeee36e0d258840731bcbfecdfe1 |