Added special `store` command to save stack values into a variable, following suggestion from nfraprado.
1.0.30
Added support for engineering notation for numbers by using the `engineering_notation` python package. It is now a dependency of `rpnpy`. (by nfraprado)
1.0.29
Added support for passing a python file to be parsed at startup through the `--startupFile` flag. Fixed a bug with argument counting for user functions. (Both by nfraprado)
1.0.28
Added `packages` to `setup.py`, maybe thereby fixing https://github.com/terrycojones/rpnpy/issues/1
1.0.27
Switch to putting the version number into `setup.py`. Not sure what the issue is in reading it from `rpnpy/__init__.py`. See https://github.com/terrycojones/rpnpy/issues/1
1.0.25
When a new function is defined (via `def`) and then used, it should be executed (it was being pushed onto the stack, not run).