Metadata-Version: 2.1
Name: happy-python
Version: 0.3.5
Summary: Happy-Python是一个简单易用的Python库，让编程轻松愉快
Home-page: https://github.com/geekcampchina/happy-python
License: MIT
Author: Chengdu Geek Camp
Author-email: info@cdgeekcamp.com
Requires-Python: >=3.8.5,<4.0.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Project-URL: Documentation, https://github.com/geekcampchina/happy-python
Project-URL: Repository, https://github.com/geekcampchina/happy-python
Description-Content-Type: text/markdown

# happy-python

Happy-Python是一个简单易用的Python库，让编程轻松愉快

## 从 pip 安装

`pip install happy-python`

## 单元测试

基于 `test` 文件夹中的 `\\__init__.py` -> `load_tests` 自动发现：

`python -m unittest tests`

## 使用方法

### 使用

比如：

`from happy_python import HappyLog`

## 本地打包安装

### 打包

安装依赖包：

`pip install -U setuptools wheel`

运行：

`python setup.py bdist_wheel`

在 `dist` 目录下会生成类似 `happy_python-0.2.6-py3-none-any.whl` 的安装包。


### 本地安装

全局安装：
     
`pip install -U happy_python-0.2.6-py3-none-any.whl`
 
用户目录安装：
    
`pip install --user -U happy_python-0.2.6-py3-none-any.whl`

### 卸载

`pip uninstall happy-python`

