-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 931 Bytes
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 931 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
41
42
43
44
45
46
47
48
49
50
51
52
[tool.pytest.ini_options]
pythonpath = "src"
[tool.pdm]
distribution = false
[tool.ruff]
target-version = "py312"
line-length = 88
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
]
ignore = [
"E501", # line too long, handled by black
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[project]
name = "bill"
version = "1.2.0"
description = "Split Bill Web Site"
authors = [
{name = "Sung Cho", email = "sung.w.cho@protonmail.com"},
]
dependencies = ["flask", "pillow", "openai", "pydantic", "click", "openpyxl"]
requires-python = "==3.12.*"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
dev = [
"ipykernel",
"ruff",
"black",
"pytest",
"pre-commit",
"pytest-dotenv",
"types-flask",
"types-pillow",
"pytest-cov",
"coverage",
]
security = [
"bandit",
"safety",
]