forked from beancount/fava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
92 lines (88 loc) · 2.41 KB
/
setup.cfg
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
[metadata]
name = fava
version = attr: setuptools_scm.get_version
description = Web interface for the accounting tool Beancount.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://beancount.github.io/fava/
project_urls =
Documentation = https://beancount.github.io/fava/
Changes = https://beancount.github.io/fava/changelog.html
Source Code = https://github.com/beancount/fava/
Issue Tracker = https://github.com/beancount/fava/issues/
Chat = https://gitter.im/beancount/fava
author = Dominik Aumayr
author_email = [email protected]
maintainer = Jakob Schnitzer
maintainer_email = [email protected]
keywords = fava beancount accounting
license = MIT
classifiers =
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Framework :: Flask
Intended Audience :: Education
Intended Audience :: End Users/Desktop
Intended Audience :: Financial and Insurance Industry
Intended Audience :: Information Technology
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: JavaScript
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Topic :: Office/Business :: Financial :: Accounting
Topic :: Office/Business :: Financial :: Investment
[options]
zip_safe = False
include_package_data = True
package_dir =
=src
packages = find:
python_requires = >=3.8
setup_requires =
setuptools_scm
install_requires =
Babel>=2.7,<3
Flask-Babel>=1,<4
Flask>=2.2,<3
Jinja2>=3,<4
Werkzeug>=2.2,<3
beancount>=2.3.5,<3
cheroot>=8,<10
click>=7,<9
markdown2>=2.3.0,<3
ply
simplejson>=3.16.0,<4
[options.entry_points]
console_scripts =
fava = fava.cli:main
[options.extras_require]
# Extra dependencies that are needed for the export to excel.
excel =
pyexcel>=0.2.2
pyexcel-ods3>=0.1.1
pyexcel-xls>=0.1.0
pyexcel-xlsx>=0.1.0
# Extra dependencies that are used in tests or for linting.
dev =
build
flake8
flake8-pyi
mypy
pre-commit
pyinstaller
pylint
pytest
pytest-cov
sphinx
tox
twine
types-babel
types-pkg_resources
types-simplejson
[options.packages.find]
where = src