Metadata-Version: 2.1
Name: mphyspy
Version: 0.2.2
Summary: Python3 library for calculating college-level modern physics
Home-page: https://github.com/eunchan1001/mphyspy.git
Author: Eunchan Cho
Author-email: eunchan1001@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
Requires-Dist: mphyspy
Requires-Dist: mpmath (==1.1.0)
Requires-Dist: numpy (==1.18.2)
Requires-Dist: sympy (==1.5.1)

# MphysPy

[![PyPI version](https://badge.fury.io/py/mphyspy.svg)](https://badge.fury.io/py/mphyspy)
[![Run on Repl.it](https://repl.it/badge/github/eunchan1001/mphyspy)](https://repl.it/github/eunchan1001/mphyspy)

MphyPy is a Python3 library for calculating college level modern physics problems

## Requirements

To use mphyspy, these packages are required

- [sympy](https://www.sympy.org/en/index.html)
- [numpy](https://numpy.org)

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install mphyspy.

```bash
    $pip install mphyspy
```
## Usage
```bash
    $python
```
```python
    >>>from mphyspy import *
    modules loaded successfully
    >>>ct.g
    #finestructure constant
    2.002319
```
## 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/)


