Metadata-Version: 2.5
Name: conda-pyproject-toml
Version: 0.1.0
Summary: Conda plugin that installs dependencies from a pyproject.toml file.
Project-URL: source, https://github.com/m-rossi/conda-pyproject-toml
Project-URL: issues, https://github.com/m-rossi/conda-pyproject-toml/issues
Author-email: Marco Rossi <developer@marco-rossi.com>
License-Expression: MIT
License-File: LICENSE
Keywords: conda,plugin,pyproject.toml
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Plugins
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Build Tools
Requires-Python: >=3.12
Requires-Dist: conda>=26.7.2
Requires-Dist: grayskull>=3.1.1
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-cov; extra == 'test'
Description-Content-Type: text/markdown

# conda-pyproject-toml

![PyPI Version](https://img.shields.io/pypi/v/conda-pyproject-toml)
![Conda Version](https://img.shields.io/conda/vn/conda-forge/conda-pyproject-toml)

[Conda](https://docs.conda.io) plugin that installs dependencies from a pyproject.toml file.

## Installation

```shell
conda install -c conda-forge conda-pyproject-toml
```

> [!NOTE]
> Altough the package is [uploaded to PyPI](https://pypi.org/project/conda-pyproject-toml/), it cannot be installed using `pip` directly due to [a missing recent version of `conda`](https://pypi.org/project/conda/) on [PyPI](https://pypi.org).

## Usage

Once installed, the plugin adds support for installing dependencies from a `pyproject.toml` file.

* Install requirements into current environment

  `conda install --file pyproject.toml`

* Create a new environment

  `conda create --name my-conda-environment --file pyproject.toml`

## Development

See [CONTRIBUTING](CONTRIBUTING.md)
