-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 742 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 742 Bytes
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
[project]
name = "SparkyBudget"
version = "0.1.0"
description = "Default template for PDM package"
authors = [
{name = "CodeWithCJ", email = "CodeWithCJ@users.noreply.github.com"},
]
dependencies = [
"Flask>=3.0.2",
"flask-login>=0.6.3",
"requests>=2.31.0",
"schedule>=1.2.1",
"gunicorn>=21.2.0",
"pandas>=2.2.3",
]
requires-python = "==3.10.*"
readme = "README.md"
license = {text = "AGPL-3.0-or-later"}
[tool.pdm]
distribution = false
[tool.pdm.dev-dependencies]
lint = [
"black>=24.2.0",
"pylint>=3.1.0",
"isort>=5.13.2",
"mypy>=1.8.0",
]
[tool.black]
line-length = 119
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 119
profile = "black"