Metadata-Version: 2.1
Name: py_extension_functions
Version: 0.0.5
Summary: personally, python extension functions
Home-page: https://github.com/Gaolious/py_extension_functions
Author: aJava
Author-email: gaolious@gmail.com
License: MIT
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.9
Description-Content-Type: text/markdown

[![Known Vulnerabilities](https://snyk.io/test/github/Gaolious/py_extension_functions/badge.svg)](https://snyk.io/test/github/Gaolious/py_extension_functions)
[![codecov](https://codecov.io/gh/Gaolious/py_extension_functions/branch/develop/graph/badge.svg?token=ZiOpnKfxT4)](https://codecov.io/gh/Gaolious/py_extension_functions)
[![Documentation Status](https://readthedocs.org/projects/py-extension-functions/badge/?version=stable)](https://py-extension-functions.readthedocs.io/en/stable/?badge=stable)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

Django를 이용한 프로젝트에 공통적으로 쓰이는 module 모음 입니다.

## 시작하기
### 문서
- https://py-extension-functions.readthedocs.io/

### 설치
- pypi : https://pypi.org/project/py_extension_functions/
- github : https://github.com/Gaolious/py_extension_functions
```shell
$ pip install py_extension_functions
```

### 설정
설치 이후 Django Project의 settings `INSTALLED_APPS` 에 추가 해야 합니다.

```text
INSTALLED_APPS = (
    ...
    'gpp',
)
```


## Build
### Tests
- [https://tox.wiki/en/latest/](https://tox.wiki/en/latest/)
```shell
$ python -m pip install tox 
$ tox
``` 

### Docs
- [https://www.sphinx-doc.org/en/master/](https://www.sphinx-doc.org/en/master/)

#### Sphinx
```shell
# Install
$ python -m pip install sphinx sphinx_rtd_theme

# Initialize
$ sphinx-quickstart docs 

# Generate documents from source
$ sphinx-apidoc -e -F -o ./docs/source ./gpp

# Generate html
$ make -C ./docs html
```
