forked from arrobalytics/django-ledger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (74 loc) · 1.99 KB
/
pyproject.toml
File metadata and controls
81 lines (74 loc) · 1.99 KB
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
[project]
name = "django-ledger"
version = "0.8.4"
readme = "README.md"
requires-python = ">=3.11"
description = "Double entry accounting system built on the Django Web Framework."
keywords = ["django", "finance", "bookkeeping", "accounting", "balance sheet", "income statement", "general ledger", "money", "engine"]
license = "GPL-3.0-or-later"
authors = [
{ name = "Miguel Sanda", email = "msanda@arrobalytics.com" }
]
maintainers = [
{ name = "Miguel Sanda", email = "msanda@arrobalytics.com" }
]
dependencies = [
"django>=4.2",
"django-treebeard>=4.7.1",
"faker>=37.6.0",
"fpdf2>=2.8.4",
"markdown>=3.9",
"ofxtools>=0.9.5",
"pillow>=11.3.0",
]
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"
]
[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"
[dependency-groups]
dev = [
"django-debug-toolbar>=6.0.0",
"jupyterlab>=4.4.9",
"myst-parser>=4.0.1",
"notebook>=7.4.7",
"renku-sphinx-theme>=0.5.0",
"sphinx>=8.2.3",
]
readthedocs = [
"myst-parser>=4.0.1",
"renku-sphinx-theme>=0.5.0",
"sphinx>=8.2.3",
]
[tool.setuptools.packages.find]
where = ["."]
exclude = [
"dev_env",
"dev_env.*",
"docs",
"docs.*",
"assets",
"assets.*",
"docs.source",
"docs.source.*",
"notebooks",
"notebooks.*",
]
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.ruff]
line-length = 120
[tool.ruff.format]
quote-style = "single"