Metadata-Version: 2.1
Name: numberConversion
Version: 0.3
Summary: A simple package to convert decimal to binary and binary to decimal
Home-page: https://github.com/shresthaprayush2/numberconversion.git
Author: Prayush Shrestha
Author-email: prayushshrestha89@gmail.com
License: UNKNOWN
Description: ## numberConversion
        
        A simple Python package for converting binary to decimal and decimal to binary.
        
        ## Installation
        
        Install the package using pip:
        
        pip install numberConversion
        
        ## Usage
        ## Convert Binary to Decimal
        
        from numberConversion import binaryToDecimal
        
        binary_number = "1010"
        decimal_number = binaryToDecimal(binary_number)
        print(decimal_number)  # Output: 10
        
        ## Convert Decimal to Binary
        
        from numberConversion import decimalToBinary
        
        decimal_number = 10
        binary_number = decimalToBinary(decimal_number)
        print(binary_number)  # Output: "1010"
        
        ## License
        
        This package is licensed under the MIT License.
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
