Metadata-Version: 2.1
Name: stvh
Version: 0.0.16rc7
Summary: a collection useful tools
Author-email: Steven Yan-Jia Huang <s@stvhuang.me>
Maintainer-email: Steven Yan-Jia Huang <s@stvhuang.me>
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

# stvh

A collection of useful tools.

## Package building and uploading

Build package, requiring [build](https://pypa-build.readthedocs.io/en/stable/):

```sh
python -m build
```

Upload package to PyPI, requiring [Twine](https://twine.readthedocs.io/en/stable/):

```py
twine upload dist/*
```


