Metadata-Version: 2.1
Name: limedev
Version: 0.6.0
Summary: Toolkit for Python development, especially packaging 
Author: Limespy
Project-URL: Homepage, https://github.com/Limespy/limedev
Project-URL: Changelog, https://github.com/Limespy/limedev/blob/main/README.md#Changelog
Project-URL: Issue Tracker, https://github.com/Limespy/limedev/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: build
Requires-Dist: build >=0.10.0 ; extra == 'build'
Requires-Dist: tomli-w >=1.0.0 ; extra == 'build'
Requires-Dist: wheel >=0.38 ; extra == 'build'
Requires-Dist: yamdog >=0.6.0 ; extra == 'build'
Requires-Dist: tomli >=2.0.1 ; (python_version < "3.11") and extra == 'build'
Provides-Extra: dev
Requires-Dist: build >=0.10.0 ; extra == 'dev'
Requires-Dist: gprof2dot >=2022.7.29 ; extra == 'dev'
Requires-Dist: mypy >=1.2.0 ; extra == 'dev'
Requires-Dist: pre-commit >=3.2.2 ; extra == 'dev'
Requires-Dist: pylint >=2.17.3 ; extra == 'dev'
Requires-Dist: pytest >=7.2.0 ; extra == 'dev'
Requires-Dist: pytest-cov >=4.0.0 ; extra == 'dev'
Requires-Dist: tomli-w >=1.0.0 ; extra == 'dev'
Requires-Dist: tox >=4.5.1 ; extra == 'dev'
Requires-Dist: types-PyYAML >=6.0 ; extra == 'dev'
Requires-Dist: wheel >=0.38 ; extra == 'dev'
Requires-Dist: yamdog >=0.5.0 ; extra == 'dev'
Requires-Dist: tomli >=2.0.1 ; (python_version < "3.11") and extra == 'dev'
Provides-Extra: package
Requires-Dist: build >=0.10.0 ; extra == 'package'
Requires-Dist: tomli-w >=1.0.0 ; extra == 'package'
Requires-Dist: wheel >=0.38 ; extra == 'package'
Requires-Dist: yamdog >=0.6.0 ; extra == 'package'
Requires-Dist: tomli >=2.0.1 ; (python_version < "3.11") and extra == 'package'
Provides-Extra: readme
Requires-Dist: yamdog >=0.6.0 ; extra == 'readme'
Provides-Extra: test
Requires-Dist: gprof2dot >=2022.7.29 ; extra == 'test'
Requires-Dist: mypy >=1.2.0 ; extra == 'test'
Requires-Dist: pylint >=3.0.2 ; extra == 'test'
Requires-Dist: pytest >=7.2.0 ; extra == 'test'
Requires-Dist: pytest-cov >=4.0.0 ; extra == 'test'
Requires-Dist: pyyaml >=6.0 ; extra == 'test'
Requires-Dist: types-PyYAML >=6.0 ; extra == 'test'

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

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

LimeDev is collection tools for Python development. These tools are more or less thin wrappers around other packages.

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

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

# Quick start guide

Here's how you can start

## The first steps

### Installing

Install LimeDev with pip

```
pip install limedev
```

### Importing

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

```python
import limedev
```

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

## 0.6.0 2024-07-17 <!-- omit in toc -->

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

#### Readme toolkit <!-- omit in toc -->

- Readme tool now gives the full pyproject dictionary
- readme make tool allows abbreviation

#### Testing toolkit <!-- omit in toc -->

- Benchmarking tools added

## 0.5.0 2024-07-16 <!-- omit in toc -->

- Updated CLI framework
- Support for python 3.9 dropped
- Support for python 3.13 added

## 0.4.1 2023-11-06 <!-- omit in toc -->

- Fixed configs

## 0.4.0 2023-11-06 <!-- omit in toc -->

- Updated profiling structure
- function_cli
- Python version range moved from 3.9 -3.11 to 3.10-3.12

## 0.3.0 2023-08-27 <!-- omit in toc -->

- Change to testing interface

## 0.2.2 2023-08-27 <!-- omit in toc -->

- Fix to performance test deleting previous performance data

## 0.2.1 2023-08-06 <!-- omit in toc -->

- Performance results dump sorting fix

## 0.2.0 2023-08-06 <!-- omit in toc -->

- Bugfixes
- Cleaner structure
- Reworked readme build

## 0.1.0 2023-05-04 <!-- omit in toc -->

- Initial assembly of the tools

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