Metadata-Version: 2.1
Name: makana
Version: 0.1.0
Summary: First Python Library
Author: AlpsLogicITSolution
Author-email: yash.patel@alpsinfo.net
License: UNKNOWN
Keywords: Makana Python Library
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# Python-Sample-Library
This is custom library
    
# we first need to install build.
    pip install build twine

# To create a Python source package (.tar.gz) and the binary package (.whl) in the dist/ directory, do:
    python -m build

# Publish the python library on Pypi
    twine upload dist/*

