Metadata-Version: 2.1
Name: PackageSnippet1
Version: 0.0.5
Summary: Common utils package
Home-page: https://github.com/user/reponame
Author: Jerin KA
Author-email: me@example.com
License: UNKNOWN
Download-URL: https://github.com/user/reponame/archive/v_01.tar.gz
Keywords: SOME,MEANINGFULL,KEYWORDS
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE

# Python package template
package template for quick start

[![Build](https://github.com/jerinka/PackageSnippet1/actions/workflows/main.yml/badge.svg)](https://github.com/jerinka/PackageSnippet1/actions/workflows/main.yml)

[![pypi](https://github.com/jerinka/PackageSnippet1/actions/workflows/python-publish.yml/badge.svg)](https://github.com/jerinka/PackageSnippet1/actions/workflows/python-publish.yml)

# Install from Pypi
```pip install PackageSnippet1```

# Local install
```git clone https://github.com/jerinka/PackageSnippet1```\
```pip3 install -e PackageSnippet1```

# build
```pip install wheel```\
```python setup.py sdist bdist_wheel```

# testpypi
```twine upload --repository testpypi dist/* ```\
```pip install -i https://test.pypi.org/simple/ PackageSnippet1 ```

# pypi
```twine upload dist/*```\
```pip install -U PackageSnippet1```

# Quick usage
```import PackageSnippet1 as pk1```\
```pk1.subpackage1.moduleA.fun_a()```

# Test
```pytest test/test_PackageSnippet1.py -s```

# Reference
[https://medium.com/@joel.barmettler/how-to-upload-your-python-package-to-pypi-65edc5fe9c56](https://medium.com/@joel.barmettler/how-to-upload-your-python-package-to-pypi-65edc5fe9c56)











