-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (45 loc) · 1.2 KB
/
Copy pathpyproject.toml
File metadata and controls
54 lines (45 loc) · 1.2 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
[project]
name = "awesome-python-leetcode"
version = "0.0.1"
description = "Python Solutions for LeetCode Problems!"
authors = [{ name = "Dennis Jabs" }]
requires-python = ">=3.10"
readme = "README.md"
license = { file = "LICENSE" }
dependencies = []
[dependency-groups]
dev = [
"bandit>=1.9.4",
"deptry>=0.25.1",
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"pytest-mock>=3.14.1",
"ruff>=0.12.1",
"rumdl>=0.2.15",
"tox-uv>=1.35.2",
"ty>=0.0.49",
]
[project.urls]
Homepage = "https://github.com/nobodyPerfecZ/python-project-template"
Issues = "https://github.com/nobodyPerfecZ/python-project-template/issues"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[tool.ruff]
line-length = 88
lint.ignore = ["E203"]
lint.select = ["E", "F", "B", "I"]
lint.mccabe.max-complexity = 10
target-version = "py310"
[tool.deptry.per_rule_ignores]
DEP003 = ["awesome_python_leetcode"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["awesome_python_leetcode"]
[tool.pytest.ini_options]
addopts = "--import-mode=importlib"
testpaths = ["tests"]