ExMan
==============
Version: 0.4.5
ExMan is a small, lightweight accounting/expense manager.
Its primary design objectives are to be lightweight and simple.
Hence I've chosen to have no database backend. The expense items
are stored in a plain text file ($HOME/.ExMan.txt), of
the format ([<date>{\n\t<item1>\t<amount1>\t<exlude>}+]*) :
--------------------------------------
<date>
<item1> <amount1> <exclude>
...
--------------------------------------
The frontend/backend logic are abstracted fairly well, trying
to follow the Model-View-Controller (MVC) architecture.