Metadata-Version: 2.1
Name: tils
Version: 0.0.2
Summary: A Python package for storing reusable utilities.
Author-email: Michael Lucky <michael@llab.dev>
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.11
Description-Content-Type: text/markdown

# Tils

Collection of Python utility functions

## Deployment to PyPi

Create a `.env` file with the following content (add pypi token within quotes).

```bash
PYPI-USER = "__token__"
PYPI-TOKEN = ""
```

Create a virtual environment and install the dependencies.

Linux

```bash
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
```

Windows

```bash
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
```

Run deployment script.

```bash
python deploy.py
```
