1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
Metadata-Version: 2.4
Name: fava
Version: 1.30.2
Summary: Web interface for the accounting tool Beancount.
Author-email: Dominik Aumayr <dominik@aumayr.name>
Maintainer-email: Jakob Schnitzer <mail@jakobschnitzer.de>
License: MIT License
Project-URL: Homepage, https://beancount.github.io/fava/
Project-URL: Changelog, https://beancount.github.io/fava/changelog.html
Project-URL: Source, https://github.com/beancount/fava/
Project-URL: Issues, https://github.com/beancount/fava/issues/
Project-URL: Chat, https://gitter.im/beancount/fava
Keywords: fava,beancount,accounting
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Flask
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: JavaScript
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Office/Business :: Financial :: Accounting
Classifier: Topic :: Office/Business :: Financial :: Investment
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: LICENSE
License-File: AUTHORS
Requires-Dist: Babel<3,>=2.11
Requires-Dist: Flask-Babel<5,>=3
Requires-Dist: Flask<4,>=2.2
Requires-Dist: Jinja2<4,>=3
Requires-Dist: Werkzeug<4,>=2.2
Requires-Dist: beancount<4,>=2
Requires-Dist: beanquery<0.3,>=0.1
Requires-Dist: beangulp>=0.1
Requires-Dist: cheroot<11,>=8
Requires-Dist: click<9,>=7
Requires-Dist: markdown2<3,>=2.3.0
Requires-Dist: ply
Requires-Dist: simplejson<4,>=3.16.0
Requires-Dist: watchfiles>=0.20.0
Provides-Extra: excel
Requires-Dist: pyexcel>=0.5; extra == "excel"
Requires-Dist: pyexcel-ods3>=0.5; extra == "excel"
Requires-Dist: pyexcel-xlsx>=0.5; extra == "excel"
Provides-Extra: dev
Requires-Dist: build>=1; extra == "dev"
Requires-Dist: furo>=2024; extra == "dev"
Requires-Dist: mypy>=1.14; extra == "dev"
Requires-Dist: pre-commit>=4; extra == "dev"
Requires-Dist: pytest>=8; extra == "dev"
Requires-Dist: pytest-cov>=6; extra == "dev"
Requires-Dist: requests>=2; extra == "dev"
Requires-Dist: setuptools>=67; extra == "dev"
Requires-Dist: sphinx>=7; extra == "dev"
Requires-Dist: sphinx-autodoc-typehints>=2; extra == "dev"
Requires-Dist: tox>=4; extra == "dev"
Requires-Dist: tox-uv>=1; extra == "dev"
Requires-Dist: twine>=5; extra == "dev"
Requires-Dist: types-setuptools>=67; extra == "dev"
Requires-Dist: types-simplejson>=3; extra == "dev"
Provides-Extra: old-deps-pins
Requires-Dist: bottle>=0.12.20; extra == "old-deps-pins"
Requires-Dist: importlib_metadata>=3.6; extra == "old-deps-pins"
Requires-Dist: jaraco-functools>=4; extra == "old-deps-pins"
Requires-Dist: lxml>=5.3.0; extra == "old-deps-pins"
Requires-Dist: more-itertools>=6; extra == "old-deps-pins"
Requires-Dist: pytest>=7.2; extra == "old-deps-pins"
Requires-Dist: python-dateutil>=2; extra == "old-deps-pins"
Requires-Dist: pytz>=2020; extra == "old-deps-pins"
Requires-Dist: setuptools>=67; extra == "old-deps-pins"
Requires-Dist: six>=1.16; extra == "old-deps-pins"
Dynamic: license-file
.. image:: https://badges.gitter.im/beancount/fava.svg
:alt: Join the chat at https://gitter.im/beancount/fava
:target: https://gitter.im/beancount/fava
.. image:: https://img.shields.io/pypi/l/fava.svg
:target: https://pypi.python.org/pypi/fava
.. image:: https://img.shields.io/pypi/v/fava.svg
:target: https://pypi.python.org/pypi/fava
Fava is a web interface for the double-entry bookkeeping software `Beancount
<http://furius.ca/beancount/>`__ with a focus on features and usability.
Check out the online `demo <https://fava.pythonanywhere.com>`__ and learn more
about Fava on the `website <https://beancount.github.io/fava/>`__.
The `Getting Started
<https://beancount.github.io/fava/usage.html>`__ guide details the installation
and how to get started with Beancount. If you are already familiar with
Beancount, you can get started with Fava::
pip3 install fava
fava ledger.beancount
and visit the web interface at `http://localhost:5000
<http://localhost:5000>`__.
If you want to hack on Fava or run a development version, see the
`Development <https://beancount.github.io/fava/development.html>`__ page on the
website for details. Contributions are very welcome!
.. image:: https://i.imgbox.com/rfb9I7Zw.png
:alt: Fava Screenshot
:width: 100%
:align: center
:target: https://fava.pythonanywhere.com
|