-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.11 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
[project]
name = "general-ledger"
version = "0.0.1"
readme = "README.md"
requires-python = ">=3.10"
description = "Double entry accounting"
keywords = ["django", "finance", "bookkeeping", "accounting"]
authors = [
{ name = "Tom Hodder", email = "[email protected]" }
]
maintainers = [
]
dependencies = [
"asgiref>=3.5.2; python_version >= '3.7'",
"django>=5.0",
"faker>=15.3.3",
"markdown>=3.4.1",
"ofxtools>=0.9.5",
"pillow>=9.3.0",
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
"Homepage" = "https://github.com/limepepper/general-ledger"
"Bug Tracker" = "https://github.com/limepepper/general-ledger/issues"
[project.license]
text = "MIT License"
[project.optional-dependencies]
dev = ["sphinx~=4.5.0"]
[tool.setuptools]
packages = ["general_ledger", "dashboard"]
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "dashboard.settings"