-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.06 KB
/
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
[build-system]
build-backend = "hatchling.build"
requires = [ "hatchling" ]
[project]
name = "python-boilerplate"
version = "0.0.0"
description = "Python boilerplate"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"mimesis==18.0.0",
]
[dependency-groups]
dev = [
"coverage==7.7.1",
"mypy==1.15.0",
"pre-commit==4.2.0",
"ruff==0.11.2",
]
[tool.hatch.build.targets.wheel]
include = [ "app" ]
exclude = [ "tests*", "tests.*" ]
[tool.hatch.build.targets.sdist]
include = [ "app" ]
exclude = [ "tests*", "tests.*" ]
[tool.hatch.build]
include = [ "LICENSE" ]
[tool.ruff]
line-length = 120
lint.select = [ "I" ] # Enable isort rules
[tool.pyproject-fmt]
column_width = 120
indent = 2
keep_full_version = true
max_supported_python = "3.13"
[tool.mypy]
ignore_missing_imports = true