-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (59 loc) · 967 Bytes
/
pyproject.toml
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
[project]
name = "pyenumerable"
version = "0.0.0"
description = "Implementation of .net's IEnumerable interface in python W/ support for generics."
readme = "readme.md"
authors = [
{ name = "AmirHossein Ahmadi", email = "amirthehossein@gmail.com" }
]
requires-python = ">=3.13"
dependencies = []
[dependency-groups]
dev = [
"pyright>=1.1.392.post0",
"pytest>=8.3.4",
"pytest-cov>=6.0.0",
"ruff>=0.9.2",
]
[tool.ruff]
line-length = 79
target-version = "py312"
lint.select = [
"E",
"F",
"I",
"W",
"C90",
"N",
"UP",
"FBT",
"A",
"COM",
"C4",
"T10",
"EM",
"FA",
"ISC",
"PIE",
"T20",
"PT",
"Q",
"RSE",
"RET",
"SLF",
"SIM",
"TID",
"ARG",
"PTH",
"ERA",
"PL",
"FLY",
"PERF",
"RUF",
]
lint.ignore = ["F401"]
lint.fixable = ["ALL"]
[tool.pyright]
typeCheckingMode = "strict"
reportUnusedImport = false
reportUnusedVariable = false