-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
48 lines (45 loc) · 1.83 KB
/
pyproject.toml
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
[project]
name = "django-ledger"
version = "0.5.2.14"
readme = "README.md"
requires-python = ">=3.7"
description = "Bookkeeping & Financial analysis backend for Django. Balance Sheet, Income Statements, Chart of Accounts, Entities"
keywords = ["django", "finance", "bookkeeping", "accounting", "balance sheet", "income statement", "general ledger", "money", "engine"]
authors = [
{ name = "Miguel Sanda", email = "[email protected]" }
]
maintainers = [
{ name = "Miguel Sanda", email = "[email protected]" }
]
dependencies = [
"asgiref==3.5.2; python_version >= '3.7'",
"django==4.1.3",
"django-treebeard==4.5.1",
"faker==15.3.3",
"markdown==3.4.1",
"ofxtools==0.9.5",
"pillow==9.3.0",
"python-dateutil==2.8.2; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"six==1.16.0; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"sqlparse==0.4.3; python_version >= '3.5'",
"text-unidecode==1.3",
"tzdata==2022.2; sys_platform == 'win32'",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Office/Business :: Financial :: Accounting",
"Framework :: Django :: 4.0",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
]
[project.urls]
"Homepage" = "https://www.djangoledger.com"
"Bug Tracker" = "https://github.com/arrobalytics/django-ledger/issues"
"Documentation" = "https://django-ledger.readthedocs.io/en/latest/"
"Source Code" = "https://github.com/arrobalytics/django-ledger"
[project.license]
text = "GPLv3 License"
[project.optional-dependencies]
dev = ["sphinx~=4.5.0", "behave~=1.2.6", "pipenv-setup", "pylint", "furo"]