-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.15 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (45 loc) · 1.15 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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "python3-template"
version = "0.0.1"
description = "This repository is template for my python project."
readme = "README.md"
requires-python = ">=3.12"
dependencies = []
authors = [{ name = "Park Sangjun" }]
[project.urls]
Repository = "https://github.com/cosmoquester/python3-template.git"
[dependency-groups]
dev = [
"ruff",
"pytest",
"pytest-cov",
"codecov",
]
[tool.setuptools.packages.find]
exclude = ["tests*"]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.ruff.lint.isort]
combine-as-imports = true
[tool.pyright]
reportUnknownVariableType = false
reportUnknownMemberType = false
reportUnusedImport = true
reportUnusedVariable = true
reportUnusedClass = true
reportUnusedFunction = true
reportImportCycles = true
reportOptionalMemberAccess = true
reportUntypedBaseClass = true
reportPrivateUsage = true
reportConstantRedefinition = true
reportInvalidStringEscapeSequence = true
reportUnnecessaryIsInstance = true
reportUnnecessaryCast = true
reportAssertAlwaysTrue = true
reportSelfClsParameterName = true