-
Notifications
You must be signed in to change notification settings - Fork 224
/
pyproject.toml
47 lines (44 loc) · 1.74 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
[project]
name = "django-ledger"
version = "0.7.0"
readme = "README.md"
requires-python = ">=3.10"
description = "Double entry accounting system built on the Django Web Framework."
keywords = ["django", "finance", "bookkeeping", "accounting", "balance sheet", "income statement", "general ledger", "money", "engine"]
authors = [
{ name = "Miguel Sanda", email = "msanda@arrobalytics.com" }
]
maintainers = [
{ name = "Miguel Sanda", email = "msanda@arrobalytics.com" }
]
dependencies = [
"asgiref>=3.5.2; python_version >= '3.7'",
"django>=2.2",
"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'",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Office/Business :: Financial :: Accounting",
"Framework :: Django :: 4.0",
"Framework :: Django :: 5.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"]