Metadata-Version: 2.1
Name: MathLibrary
Version: 18.0
Summary: Math Library For Python
Home-page: https://github.com/abdulsamedkeskin/MathLibrary
Author: Abdulsamet Keskin
Author-email: erdemsametkeskin25@gmail.com
License: MIT
Download-URL: https://github.com/abdulsamedkeskin/MathLibrary/archive/V18.tar.gz
Description: # MathLibrary
        Math Library for Python
        
        # Installation
        ```python
        pip install MathLibrary
        ```
        # Example
        
        ```python
        from MathLibrary import MathLibrary
        
        
        print(MathLibrary.fact(5))
        ```   
                
        
        ### Output : 
        #### ```120```
        # Props
        | Props                 | Description                                         |
        | -------------         |:-------------:                                      |
        | fact                  | Returns the factorial of a number                   |
        | add                   | Returns the sum of numbers                          |
        | subtract              | Returns numbers subtracted from each other          |
        | multiplication        | Returns the product of numbers                      |
        | division              | Returns the quotient of numbers                     |
        | percent               | Returns the percentage of values entered            |
        | pi                    | Returns the number pi                               |
        | compare               | Compare numbers                                     |
        | absolute              | Returns the absolute value of a number              |
        | power                 | Returns the power of the number                     |
        | square                | Returns the square root of the number               |
        | PositiveOrNegative    | Returns whether the number is positive or negative. |
        # License
        MIT License
        
        Copyright (c) 2020 abdulsamedkeskin
        
        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.
        
Keywords: MathLibrary
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 :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
