Metadata-Version: 2.1
Name: py_utils_khabibullin.m.m
Version: 0.0.19
Summary: A small example package
Author-email: Marat Khabibullin <khabibullin.m.m@gmail.com.com>
License: Copyright (c) 2018 The Python Packaging Authority
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
Project-URL: Homepage, https://github.com/
Project-URL: Issues, https://github.com/
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: prettytable>=3.9.0
Requires-Dist: pyperclip>=1.8.2

# Example
https://github.com/pypa/sampleproject
https://packaging.python.org/en/latest/tutorials/packaging-projects/

# Example Package

This is a simple example package. You can use
[GitHub-flavored Markdown](https://guides.github.com/features/mastering-markdown/)
to write your content.

# PREREQUESITES
To be able to build, install "python -m pip install --upgrade build"
To be able to upload build, install twin "python -m pip install --upgrade twine"

# DEPLOY
Update version
Remove "dist" folder
python -m build
## To PyPl
python -m twine upload dist/*
## To TestPyPl
python -m twine upload --repository testpypi dist/*

# INSTALL
## From PyPl
pip install py-utils-khabibullin.m.m
## From TestPyPl
pip install py-utils-khabibullin.m.m --index-url https://test.pypi.org/simple/

# UPGRADE
pip install -U py-utils-khabibullin.m.m
pip install -U py-utils-khabibullin.m.m --index-url https://test.pypi.org/simple/

# UNINSTALL
pip uninstall py-utils-khabibullin.m.m
