-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 853 Bytes
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 853 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
[tool.poetry]
name = "leetcode"
version = "0.1.0"
description = "Problems and solutions for LeetCode"
authors = ["Min Huang <min.huang@alumni.usc.edu>"]
license = "MIT"
readme = "README.md"
[tool.poetry.scripts]
all = "scripts:run_all"
format = "scripts:run_format"
lint = "scripts:run_lint"
test = "scripts:run_tests"
[tool.poetry.dependencies]
python = "^3.13"
[tool.poetry.group.dev.dependencies]
black = "^25.1.0"
isort = "^6.0.1"
pyright = "^1.1.397"
pytest = "^8.3.4"
ruff = "^0.9.10"
snapshottest = "^1.0.0a0"
[tool.black]
exclude = "snapshots/"
line-length = 120
[tool.isort]
profile = "black"
skip = ["snapshots"]
force_sort_within_sections = true
lines_between_sections = 0
lines_after_imports = 2
[tool.ruff]
exclude = ["snapshots"]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"