Metadata-Version: 2.1
Name: tekmoney
Version: 1.1
Summary: Handles money
Home-page: https://github.com/tek-shinobi/tekmoney
Author: tek shinobi
Author-email: hello@gmail.com
License: MIT
Keywords: money,currency
Platform: any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: babel (>=2.5.0)
Requires-Dist: typing (>=3.6.0)

# tekmoney
Tek money. Handles money.

- Handles mathematical and comparison operations on product prices
- Implements exception handling
- Allows specifying tax on a product price
- Allows specifying a range for product price
- Allows for applying discount on product prices

## Installation
- Using pip: pip install tekmoney
- using pipenv: pipenv install tekmoney

## Usage
Use Currency class to specify amount and currency denomination.
- Currency(10, 'USD') indicates 10 us dollars
- Currency(Decimal('13.20'), 'USD') indicates 13 US dollars and 20 cents. Use Decimal class to specify non int values 


