Metadata-Version: 2.1
Name: cruntils
Version: 0.1.1
Summary: A collection of utilities.
Author: Nambarc
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyserial>=3.5
Provides-Extra: windows
Requires-Dist: pywin32>=306; extra == "windows"

# Introduction

A collection of utilities. Mainly for me. Others may find them useful.

# Updating package

To update the package, take the following steps:
- Delete the **/dist** folder
- Delete the **/cruntils.egg-info** folder
- Update versions in **pyproject.toml** and **setup.py**
- Build new package with **py -m build**
- Upload to PyPi with **py -m twine upload dist/\***

# Package Creation

Okay, this guide was also really useful:
https://packaging.python.org/en/latest/tutorials/packaging-projects/

Used the following guide to create the package:
https://python-packaging.readthedocs.io/en/latest/minimal.html

