Metadata-Version: 2.1
Name: stvh
Version: 0.0.15rc1
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 License
        
        Copyright (c) 2022 Yan-Jia Steven Huang
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Platform: UNKNOWN
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/*
```


