Metadata-Version: 2.1
Name: qty
Version: 0.0.2
Summary: A Python library for dealing with physical quantities
Home-page: https://gitlab.com/jdesch/qty
License: UNKNOWN
Author: Jude Deschamps
Author-email: jdesch@mit.edu
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Topic :: Scientific/Engineering
Project-URL: Issues, https://gitlab.com/jdesch/qty/issues
Project-URL: Source, https://gitlab.com/jdesch/qty

# Qty

**Qty** is a Python library for dealing with physical quantities.

## Installation

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

```
pip install qty
```

## Usage

```python
from qty import Energy

>>> E = Energy()
>>> E.meV = 1000.
>>> E.J
1.602176634e-19
```

## 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
[GNU GPLv3](https://choosealicense.com/licenses/gpl-3.0/)


