Metadata-Version: 2.4
Name: microprojects
Version: 0.1.0
Summary: MicroProjects in Python
Project-URL: Documentation, https://github.com/nyx-4/MicroProjects/wiki
Project-URL: Repository, https://github.com/nyx-4/MicroProjects
Project-URL: Issues, https://github.com/nyx-4/MicroProjects/issues
Project-URL: Changelog, https://github.com/nyx-4/MicroProjects/blob/main/CHANGELOG.md
Project-URL: DOWNLOAD, https://example.com/abc.tar.gz
Author-email: Nyx <241463@students.au.edu.pk>
Maintainer-email: Nyx <241463@students.au.edu.pk>
License-Expression: GPL-3.0-or-later
License-File: LICENSE
Keywords: calculator,ideas,microprojects,project ideas
Requires-Python: >=3.8
Provides-Extra: cli
Provides-Extra: gui
Description-Content-Type: text/markdown

## MicroProjects
This is a collection of MicroProjects I code for fun..

## Table of Content
- [MicroProjects](#microprojects)
- [Table of Content](#table-of-content)
- [1. Calculator](#1-calculator)
    - [Usage:](#usage)

## 1. [Calculator](https://github.com/nyx-4/MicroProjects/tree/main/microprojects/calc)
A simple calculator written in Python that _just_ works. The source code is available on [nyx-4/MicroProjects/calc - GitHub](https://github.com/nyx-4/MicroProjects/tree/main/microprojects/calc).

### [Usage](https://github.com/nyx-4/MicroProjects/tree/main/microprojects/calc#usage):
- From CLI: `calc 5 + 10 x 3 - 2`
- As Python module: `python -m microprojects.calc 5 + 10 x 3 - 2`
- From Python source: `microprojects.calc("5 + 10 x 3 - 2")`
