Metadata-Version: 2.1
Name: usefulpy
Version: 0.6
Summary: The most useful functions in everyday life
Home-page: https://github.com/bersena911/usefulpy
Author: Mate Bersenadze
Author-email: matebersenadze@gmail.com
License: MIT
Download-URL: https://github.com/bersena911/usefulpy/archive/0.6.tar.gz
Description: # UsefulPy
        The most useful functions in everyday life
        
        ## Installation
        
        Use the package manager [pip](https://pip.pypa.io/en/stable/) to install usefulpy.
        
        ```bash
        pip install usefulpy
        ```
        
        ## Usage
        
        ```python
        from usefulpy.math import is_negative, is_ten
        
        is_ten(10) # returns 'True'
        is_ten(9) # returns 'False'
        
        is_negative(-1) # returns 'True'
        is_negative(1) # returns 'False'
        is_negative(0) # returns 'False'
        ```
        
        ## Contributing
        Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
        
        Please make sure to update tests as appropriate.
        
        ## License
        [MIT](https://choosealicense.com/licenses/mit/)
Keywords: math,dummy,useful
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
