Metadata-Version: 2.1
Name: futsu
Version: 0.0.32
Summary: Very reusable python code
Home-page: https://github.com/luzi82/py.futsu
Author: Luzi Leung
Author-email: luzi82@gmail.com
License: UNKNOWN
Description: [![Gitpod ready-to-code](https://img.shields.io/badge/Gitpod-ready--to--code-blue?logo=gitpod)](https://gitpod.io/#https://github.com/luzi82/py.futsu)
        
        ![Python package](https://github.com/luzi82/py.futsu/workflows/Python%20package/badge.svg)
        
        # Futsu
        
        Futsu = Japanese 普通 , means general, ordinary, usual.
        
        You can see this lib is like Apache Commons, but in python.
        
        https://github.com/luzi82/py.futsu
        
        
        ## Cheat sheet
        
        ```
        gcloud auth login
        gcloud config configurations create futsu
        gcloud config set project futsu-242513
        export GOOGLE_APPLICATION_CREDENTIALS=${PWD}/key/futsu-4bc2f6db1c50.json
        
        virtualenv --python python3 venv
        source venv/bin/activate
        
        pip install --upgrade pip wheel
        pip install --upgrade setuptools wheel nose twine keyring google-cloud-storage boto3 lazy-import
        
        keyring set https://upload.pypi.org/legacy/ luzi82
        keyring set https://test.pypi.org/legacy/ luzi82
        
        rm -rf dist
        python3 setup.py test
        python3 setup.py sdist bdist_wheel
        
        python3 -m twine upload -u luzi82 --repository-url https://test.pypi.org/legacy/ dist/*
        
        deactivate
        
        mkdir -p tmp;cd tmp
        rm -rf venv_test
        virtualenv --python python3 venv_test
        source venv_test/bin/activate
        pip install --index-url https://test.pypi.org/simple/ --no-deps futsu
        python3 -c "import futsu;print(futsu.name)"
        deactivate
        cd ..
        
        source venv/bin/activate
        python3 -m twine upload -u luzi82 dist/*
        deactivate
        
        # short output
        
        # update version in setup.py
        
        export GOOGLE_APPLICATION_CREDENTIALS=${PWD}/key/futsu-4bc2f6db1c50.json
        source venv/bin/activate
        
           rm -rf dist \
        && python3 setup.py test \
        && python3 setup.py sdist bdist_wheel \
        && python3 -m twine upload -u luzi82 dist/*
        
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: Public Domain
Classifier: Operating System :: OS Independent
Requires-Python: >=3
Description-Content-Type: text/markdown
