Metadata-Version: 2.4
Name: catfood
Version: 1.0.3
Summary: A collection of various commonly used functions. / 各种常用函数的集合。
Author: 鸭鸭「カモ」
License-Expression: Apache-2.0
Project-URL: Homepage, https://github.com/DuckDuckStudio/catfood
Project-URL: Repository, https://github.com/DuckDuckStudio/catfood
Project-URL: Issues, https://github.com/DuckDuckStudio/catfood/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: colorama>=0.4.6
Requires-Dist: requests>=2.32.5
Requires-Dist: keyring>=25.6.0
Provides-Extra: typing-check
Requires-Dist: pyright; extra == "typing-check"
Provides-Extra: build-and-publish
Requires-Dist: build; extra == "build-and-publish"
Requires-Dist: twine; extra == "build-and-publish"
Dynamic: license-file

# 猫粮 🐱

[![Pypi 上的版本](https://img.shields.io/pypi/v/catfood.svg)](https://pypi.org/project/catfood)  

各种常用函数的集合。

## 安装

我自己仅在 CPython 3.13 (3.13.9) 测试过。  

### Pypi

https://pypi.org/project/catfood/

```bash
pip install catfood
```

### Test Pypi

https://test.pypi.org/project/catfood/

```bash
pip install -i https://test.pypi.org/simple/ catfood
```

### 从源安装
```bash
git clone https://github.com/DuckDuckStudio/catfood.git
pip install ./catfood
```

#### Build whl
```bash
# Windows PowerShell
git clone https://github.com/DuckDuckStudio/catfood.git
cd catfood

python -m venv .venv
& ".venv/Scripts/Activate.ps1"
python.exe -m pip install pip --upgrade

pip install ".[build_and_publish]" # 包括构建和发布依赖 build 和 twine
python -m build
ls dist/

# 从 whl 安装
pip install dist/catfood-1.0.0-py3-none-any.whl
```
