Metadata-Version: 2.3
Name: uv2conda
Version: 0.1.6
Summary: Create a Conda environment file from a Python project using uv.
Project-URL: Homepage, https://github.com/fepegar/uv2conda
Project-URL: Source, https://github.com/fepegar/uv2conda
Author-email: Fernando Pérez-García <fepegar@gmail.com>
Requires-Python: >=3.9
Requires-Dist: loguru
Requires-Dist: packaging
Requires-Dist: pyyaml
Requires-Dist: typer
Description-Content-Type: text/markdown

# uv2conda

![PyPI](https://img.shields.io/pypi/v/uv2conda)

Tiny Python package to create a [`conda`](https://docs.anaconda.com/miniconda/) environment file from a Python project using [`uv`](https://docs.astral.sh/uv/).

```shell
pip install uv2conda
uv2conda \
    --project-dir "/path/to/my/project/" \
    --name "my_conda_env_name" \
    --python "3.12.7" \
    --conda-env-path "my_conda_env.yaml" \
    --requirements-path "requirements.txt" \
    --uv-args "--prerelease=allow"
```

Or, in Python:

```python
import uv2conda

uv2conda.make_conda_env_from_project_dir(
    "/path/to/my/project/",
    name="my_conda_env_name",
    python_version="3.12.7",
    out_path="environment.yaml",
    requirements_path="requirements.txt",
    uv_args=["--prerelease=allow"],
)
```

Example for this library:

```shell
uv2conda --python 3.12.7 --show
```

Output (printed on screen as we used `--show`):

```yaml
name: uv2conda
dependencies:
- python=3.12.7
- pip
- pip:
  - click==8.1.7
  - colorama==0.4.6 ; sys_platform == 'win32' or platform_system == 'Windows'
  - loguru==0.7.2
  - markdown-it-py==3.0.0
  - mdurl==0.1.2
  - packaging==24.2
  - pygments==2.18.0
  - pyyaml==6.0.2
  - rich==13.9.4
  - shellingham==1.5.4
  - typer==0.13.1
  - typing-extensions==4.12.2
  - win32-setctime==1.1.0 ; sys_platform == 'win32'
```

## Related projects

- [`pyproject2conda`](https://pypi.org/project/pyproject2conda/)
