Metadata-Version: 2.4
Name: uvxt
Version: 0.1.6
Summary: The best tools for developers using uv
Author-email: Alekse Marusich <alekse.marusich@rocshers.com>
License: MIT
Project-URL: Repository, https://gitlab.com/rocshers/python/uv-go
Keywords: rocshers,uvxt,uv,pypi
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development
Classifier: Topic :: System :: Archiving :: Packaging
Classifier: Topic :: System :: Installation/Setup
Classifier: Topic :: System :: Software Distribution
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: typer>=0.10
Requires-Dist: uv-audit>=0.1.2
Requires-Dist: uv-go>=0.1.0
Requires-Dist: uv-stats>=0.1.0
Requires-Dist: uv-up>=0.1.0
Requires-Dist: uv-version>=0.1.1

# uvxt - uv tools collection

A collection of tools that, in conjunction with the capabilities of the uv, will increase your productivity

[![PyPI](https://img.shields.io/pypi/v/uvxt)](https://pypi.org/project/uvxt/)
[![PyPI - Python Version](https://img.shields.io/pypi/pyversions/uvxt)](https://pypi.org/project/uvxt/)
[![uvxt](https://img.shields.io/badge/family-uvxt-purple)](https://pypi.org/project/uvxt/)

[![Coverage](https://sonarcloud.io/api/project_badges/measure?project=rocshers_uvxt&metric=coverage)](https://sonarcloud.io/summary/new_code?id=rocshers_uvxt)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=rocshers_uvxt&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=rocshers_uvxt)

[![Downloads](https://static.pepy.tech/badge/uvxt)](https://pepy.tech/project/uvxt)
[![GitLab stars](https://img.shields.io/gitlab/stars/rocshers/python/uvxt)](https://gitlab.com/rocshers/python/uvxt)
[![GitLab last commit](https://img.shields.io/gitlab/last-commit/rocshers/python/uvxt)](https://gitlab.com/rocshers/python/uvxt)

## Quick start

```bash
uv tool install uvxt
uvxt audit
```

or

```bash
uvx uvxt audit
```

## Commands

- `uvxt go` - Launch the [uv-go](https://pypi.org/project/uv-go/)
- `uvxt up` - Launch the [uv-up](https://pypi.org/project/uv-up/)
- `uvxt audit` - Launch the [uv-audit](https://pypi.org/project/uv-audit/)
- `uvxt stats` - Launch the [uv-stats](https://pypi.org/project/uv-stats/)
- `uvxt version` - Launch the [uv-version](https://pypi.org/project/uv-version/)

## Contribute

Issue Tracker: <https://gitlab.com/rocshers/python/uvxt/-/issues>  
Source Code: <https://gitlab.com/rocshers/python/uvxt>

### How to add a new tool?

1) Create your CLI application.
   - We strongly recommend using `typer` for easy integration into uvxt.
   - Make sure that your package dependencies do not conflict with those already described in uvxt.
2) Upload your module to PyPI.
3) Add this package as a dependency to uvxt via `uv add`.
4) Import your CLI application in [uvxt/cli.py](./uvxt/cli.py)
5) Check that everything works fine.
6) Make a PR.

### Development Commands

Before adding changes:

```bash
make install
```

After changes:

```bash
make format test
```
