Metadata-Version: 2.4
Name: qixuema
Version: 0.0.8
Summary: Shared utilities
Author-email: Xueqi Ma <qixuemaa@gmail.com>
License-File: LICENSE
Requires-Python: >=3.11
Requires-Dist: deprecated>=1.2.14
Requires-Dist: einops>=0.8.0
Requires-Dist: einx>=0.3.0
Requires-Dist: numpy==1.26.0
Requires-Dist: packaging>=21.0
Requires-Dist: pyyaml>=6.0.1
Provides-Extra: dev
Requires-Dist: build; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: ruff; extra == 'dev'
Description-Content-Type: text/markdown

## mautils
utils for saving my life

```
pip install qixuema -i https://pypi.org/simple
```

Clean up old build files
```
rm -rf build dist *.egg-info
```

install and update build tools
```
pip install -U packaging
```

build
```
python -m build
```
Upgrade twine to the latest version
```
pip install --upgrade twine
```

check
```
twine check dist/*
```

Upload the package to PyPI
```
twine upload dist/*
```
Upgrade and install the package
```
pip install --upgrade qixuema -i https://pypi.org/simple
```

install on local
```
python -m pip install -e . 
```
