-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
113 lines (105 loc) · 2.02 KB
/
pyproject.toml
File metadata and controls
113 lines (105 loc) · 2.02 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[project]
name = "text2markdown"
version = "0.1.5"
authors = [{ name = "Isaacus", email = "support@isaacus.com" }]
description = "A Python library for intelligently converting text into Markdown."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"isaacus",
]
[dependency-groups]
dev = ["ipykernel"]
[project.urls]
Homepage = "https://docs.isaacus.com/text2markdown"
Documentation = "https://github.com/isaacus-dev/text2markdown/blob/main/README.md"
Issues = "https://github.com/isaacus-dev/text2markdown/issues"
Source = "https://github.com/isaacus-dev/text2markdown"
[tool.ruff]
exclude = [
"__pycache__",
"develop-eggs",
"eggs",
".eggs",
"wheels",
"htmlcov",
".tox",
".nox",
".coverage",
".cache",
".pytest_cache",
".ipynb_checkpoints",
".mypy_cache",
".pybuilder",
"__pypackages__",
".env",
".venv",
"venv",
"env",
"ENV",
"env.bak",
"venv.bak",
".archive",
".persist_cache",
"site-packages",
"node_modules",
"dist",
"build",
"dist-info",
"egg-info",
".hatchling",
".bzr",
".direnv",
".git",
".git-rewrite",
".hg",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".vscode",
"_build",
"buck-out",
"migrations",
"target",
"bin",
"lib",
"lib64",
"include",
"share",
"var",
"tmp",
"temp",
"logs",
]
line-length = 120
indent-width = 4
target-version = "py312"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
fixable = ["ALL"]
unfixable = []
ignore = ["E741"]
[tool.ruff.lint.isort]
length-sort = true
section-order = [
"future",
"standard-library",
"first-party",
"third-party",
"local-folder",
]
lines-between-types = 1
order-by-type = false
combine-as-imports = true
known-first-party = ['_parent']
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
[build-system]
requires = ["uv_build>=0.9.16,<0.10.0"]
build-backend = "uv_build"