Metadata-Version: 2.4
Name: tuniq
Version: 0.0.4
Summary: implementation of tuniq.unique() for list types
Author-email: kagekirin <kagekirin@gmail.com>
Maintainer-email: kagekirin <kagekirin@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/KageKirin/py-tuniq
Project-URL: Documentation, https://github.com/KageKirin/py-tuniq
Project-URL: Repository, https://github.com/KageKirin/py-tuniq.git
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=9.0; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Dynamic: license-file

# Tuniq 

Implementation of tuniq.unique() for list types.

## ⚡ Usage

```python
import tuniq

l = [1,3,4,5,8,4,6,2,7,2,5,3]
u = tuniq.unique(l)
print(u)
## should give [1,3,4,5,8,6,2,7]
```

## 🔧 Building

```shell
uv build
```

## 🤝 Collaborate with My Project

Please refer to the [collaboration guidelines](./COLLABORATION.md) for details.
