Metadata-Version: 2.2
Name: numeration_system
Version: 0.2.6
Summary: A non-professional library created to provide value conversion functions in the number system.
Author-email: Lucas Maciel <lalucasforte56@gmail.com>
License: Copyright (c) 2025 Lucas Maciel
        
        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/luca-maciel/calculadora_sistema_numera-o
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# A non-professional library created to provide value conversion functions in the number system.

## This function will provide the conversions:
    - Decimal to binary, octal or hexadecimal.
    - Binary to decimal, octal or hexadecimal.
    - Octal to decimal, binary or hexadecimal.
    - And in the future, hexadecimal to decimal, binary or octal.

# To install:
- In your cmd (Windows) - `pip install numeration_system`
- In terminal (Linux) - `pip3 install numeration_system`

## Example of use:
### To convert 256 in binary:
``` python
from numeration_system import *

number = 256

binary = decimal_to_binary(number)

print(binary)  # Output: 100000000
```
### If you want to see step-by-step conversion process:
``` python
from numeration_system import *

number = 256

binary = decimal_to_binary(number, step_by_step=True)
```
