Metadata-Version: 2.1
Name: common_util_py
Version: 0.0.12
Summary: common python utility modules
Home-page: https://github.com/jasonwee/common-util-py
Author: Jason Wee
Author-email: peichieh@gmail.com
License: Apache Software License
Description: ## common-util-py
        common utilities in python
        
        ## how to install
        
        ```sh
        virtualenv --python=/usr/bin/python3 py39_env
        or
        python3.8 -m venv env_py38
        source env_py38/bin/activate
        pip install .
        ```
        
        ## how to build
        ```sh
        $ python setup.py --help-commands
        $ python setup.py sdist
        ```
        
        ## how to test
        ```sh
        $ python setup.py test
        $ python setup.py nosetests
        ```
        
        read more [here](https://nose.readthedocs.io/en/latest/setuptools_integration.html)
        
        
        https://www.codingforentrepreneurs.com/blog/pipenv-virtual-environments-for-python/
        https://packaging.python.org/
        https://betterscientificsoftware.github.io/python-for-hpc/tutorials/python-pypi-packaging/
        
        ## how to upload to pypi
        ```sh
        python setup.py sdist
        pip install twine
        ```
        
        ## commands to upload to the pypi test repository
        ```sh
        twine upload --repository-url https://test.pypi.org/legacy/ dist/*
        ```
        or
        ```sh
        twine upload --config-file ~/.pypirc -r testpypi dist/common_util_py-0.0.1.tar.gz
        ```
        
        ## test install
        ```sh
        pip install --index-url https://test.pypi.org/simple/ common-util-py
        ```
        
        # command to upload to the pypi repository
        ```sh
        twine upload dist/*
        pip install common-util-py
        ```
        
Platform: UNKNOWN
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
