-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (53 loc) · 1.08 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (53 loc) · 1.08 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
[project]
name = "folark"
version = "0.1.0"
description = "本地优先的个人文档管理工具"
readme = "README.md"
license = "AGPL-3.0"
authors = [
{name = "folark contributors"},
]
requires-python = ">=3.12"
dependencies = [
"litestar[jinja,standard]",
"uvicorn[standard]",
"aiosqlite",
"chardet",
"pydantic",
"pydantic-settings",
"pymupdf",
"python-docx",
"openpyxl",
"python-pptx",
"ebooklib",
"beautifulsoup4",
"Pillow",
"python-multipart",
"py7zr",
"rarfile",
]
[project.urls]
Homepage = "https://github.com/lllcho/folark"
Repository = "https://github.com/lllcho/folark"
Issues = "https://github.com/lllcho/folark/issues"
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
]
[tool.setuptools.packages.find]
where = ["app"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # Pyflakes
"W", # pycodestyle warnings
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
]
ignore = [
"E501", # line too long (handled by formatter)
]