Convert requirements.txt to pyproject.toml
Project description
Poetry Import Plugin
poetry-import-plugin is a Python plugin for Poetry that simplifies the process of importing dependencies from requirements.txt files into a Poetry project. It allows you to integrate dependencies into specified dependency groups within the project's pyproject.toml file, optionally applying constraints from a constraints file. This plugin also supports updating the Poetry lock file and installing dependencies.
ps. It is renamed from Req2Toml
Features
- Import dependencies from multiple
requirements.txtfiles into specified groups. - Apply version constraints from a constraints file.
Installation
Please follow the official docs for the latest available methods.
Currently (as of 2024), poetry provides three ways to install the plugin:
With pipx inject
# To install
pipx inject poetry poetry-import-plugin
# To uninstall
pipx uninject poetry poetry-import-plugin
With pip
# To install
$POETRY_HOME/bin/pip install --no-cache-dir poetry-import-plugin
# To uninstall
$POETRY_HOME/bin/pip uninstall poetry-import-plugin
The self add command (not recommended for Windows users)
# To install
poetry self add poetry-import-plugin
# To uninstall
poetry self remove poetry-import-plugin
Usage
The import command can be used to import dependencies from requirements.txt files into your Poetry project. Below are the available options and arguments:
Arguments
files(optional, multiple): Therequirements.txtfiles to import.
Options
--group,-g(optional, multiple): Specifies the dependency group(s) into which the dependencies will be imported. Multiple groups can be specified, each followed by a list of dependency files to import.--constraint,-c(optional): Specifies a constraint file to apply version restrictions on dependencies during import.--lock(optional): Updates the Poetry lock file without installing the packages.--no-update(optional): Prevents updating the lock file when running the lock operation.--install(optional): Runs a Poetry installation to install all dependencies defined inpyproject.toml.
Examples
-
Import dependencies from
requirements.txtinto the default group:poetry import requirements.txt
-
Import dependencies from multiple
requirements.txtfiles into specific groups:poetry import -g dev dev-requirements.txt -g test test-requirements.txt
-
Apply constraints from a constraints file during import:
poetry import -c constraints.txt requirements.txt
-
Update the Poetry lock file after importing dependencies:
poetry import --lock requirements.txt
-
Install all dependencies after importing:
poetry import --install requirements.txt
Contact
For any questions or feedback, please open an issue on the GitHub repository or contact the author.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file poetry_import_plugin-3.0.1.tar.gz.
File metadata
- Download URL: poetry_import_plugin-3.0.1.tar.gz
- Upload date:
- Size: 15.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.12.3 Linux/6.8.0-1021-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5fa61e82029cd5247940220cb26a4bf24154938be0dfd3173376f8e72e101396
|
|
| MD5 |
3899486d04c8d813cbe7c2c9ca816e6b
|
|
| BLAKE2b-256 |
e3a394c60bc85ac6c95369264e37b2541b0b7bbf9c4c3f169086533475481e62
|
File details
Details for the file poetry_import_plugin-3.0.1-py3-none-any.whl.
File metadata
- Download URL: poetry_import_plugin-3.0.1-py3-none-any.whl
- Upload date:
- Size: 16.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.2 CPython/3.12.3 Linux/6.8.0-1021-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef7ed7fb594a500cff550dac8ca494817b7fe614325a223f30b97d12fbaf2ee2
|
|
| MD5 |
6ba0eeade72c20dcd02905e145615e6d
|
|
| BLAKE2b-256 |
b9c7d8dcf30a17fb6236d1a1870323808fc2757a4157126258682455b201924a
|