Metadata-Version: 2.4
Name: limeinstall
Version: 0.1.0
Summary: Repository installation tool
Author: Limespy
Project-URL: Homepage, https://github.com/Limespy/Limeinstaller
Project-URL: Changelog, https://github.com/Limespy/Limeinstaller/blob/main/README.md#Changelog
Project-URL: Issue Tracker, https://github.com/Limespy/Limeinstaller/issues
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.11
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: pip>=25
Provides-Extra: build
Requires-Dist: limedev[build]>=0.6.0; extra == "build"
Provides-Extra: dev
Requires-Dist: limedev[package,readme,test]>=0.6.1; extra == "dev"
Requires-Dist: pre-commit<4,>=3.2.2; extra == "dev"
Requires-Dist: tox>=4.5.1; extra == "dev"
Requires-Dist: tox-uv>=1.25; extra == "dev"
Provides-Extra: test-functional
Requires-Dist: pytest>=7.2.0; extra == "test-functional"
Dynamic: license-file

[![PyPI Package latest release](https://img.shields.io/pypi/v/limeinstall.svg)][1]
[![PyPI Wheel](https://img.shields.io/pypi/wheel/limeinstall.svg)][1]
[![Supported versions](https://img.shields.io/pypi/pyversions/limeinstall.svg)][1]
[![Supported implementations](https://img.shields.io/pypi/implementation/limeinstall.svg)][1]

# LimeInstall <!-- omit in toc -->

LimeInstall is a tool for more complex installation combining installation from pyproject, requirements and editable repositories.

## Table of Contents <!-- omit in toc -->

- [Quick start guide](#quick-start-guide)
    - [The first steps](#the-first-steps)
        - [Installing](#installing)
        - [Importing](#importing)
        - [Example](#example)

# Quick start guide

Here's how you can start

## The first steps

### Installing

Install LimeInstall with pip

```
pip install limeinstall
```

### Importing

Import name is the same as install name, `limeinstall`.

```python
import limeinstall
```

Since the package is accessed often,  abbreviation `li` is used. The abbreviation is used throughout this document.

```python
import limeinstall as li
```

### Example

```python
import limeinstall as li

```

# Changelog <!-- omit in toc -->

## 0.1.0 2025-04-06 <!-- omit in toc -->

Cleared feature set

## 0.0.1 2024-12-18 <!-- omit in toc -->

Initial release

[1]: <https://pypi.org/project/limeinstall> "Project PyPI page"
