Metadata-Version: 2.1
Name: mak.gnuoy-python-utils
Version: 0.1.0
Summary: mak.gnuoy's python utilities package
Author-email: Mak Gnuoy <mak.gnuoy@gmail.com>
Project-URL: Homepage, https://github.com/mak-gnuoy/python-utils
Project-URL: Bug Tracker, https://github.com/mak-gnuoy/python-utils/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# python-utils
mak.gnuoy's python utilities package

## pre-requisites
   ```
   $ pip install build --upgrade 
   $ pip install twine --upgrade 
   ```
   
## unit test
   ```
   $ export PYTHONPATH=$PYTHONPATH:./src
   $ python -m unittest -v tests.config
   ```

## build
   ```
   $ python -m build
   ```

## distribution 
  - test.pypi.org
   ```
   $ python -m twine upload -r testpypi dist/*
   ```
  - pypi.org
   ```
   $ python -m twine upload dist/*
   ```

## installation
  - test.pypi.org
   ```
   $ python -m pip install -i https://test.pypi.org/simple/ mak.gnuoy-python-utils
   ```
  - pypi.org
   ```
   $ python -m pip install mak.gnuoy-python-utils
   ```

