Metadata-Version: 2.1
Name: stvh
Version: 0.0.15
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.10
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

# stvh

A collection of useful tools.

## Build status

<table>
  <tr>
    <th>build</th>
    <th>status</th>
  </tr>
  <tr>
    <td>misc</td>
    <td>
      <a href="https://builds.sr.ht/~stvhuang/stvh.py/commits/main/misc.yml">
        <img src="https://builds.sr.ht/~stvhuang/stvh.py/commits/main/misc.yml.svg"></td>
      </a>
    </td>
  </tr>
  <tr>
    <td>sklearn</td>
    <td>
      <a href="https://builds.sr.ht/~stvhuang/stvh.py/commits/main/sklearn.yml">
        <img src="https://builds.sr.ht/~stvhuang/stvh.py/commits/main/sklearn.yml.svg"></td>
      </a>
  </tr>
  <tr>
    <td>torch</td>
    <td>
      <a href="https://builds.sr.ht/~stvhuang/stvh.py/commits/main/torch.yml">
        <img src="https://builds.sr.ht/~stvhuang/stvh.py/commits/main/torch.yml.svg">
      </a>
    </td>
  </tr>
</table>

## 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/*
```


