-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
71 lines (64 loc) · 1.16 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "modern_python"
version = "1.0.1"
description = "Example repository demonstrating a modern Python project setup"
readme = "README.md"
requires-python = ">=3.12"
license-files = { paths = ["LICENSE"] }
authors = [
]
dependencies = [
"coloredlogs~=15.0.1",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
modern_python = "modern_python.main:main"
[project.optional-dependencies]
dev = [
"black~=24.4.2",
"pre-commit~=3.4.0",
"pytest~=7.4.2",
"ruff~=0.5.0"
]
[tool.hatch.envs.dev]
features = [
"dev"
]
[tool.ruff.lint]
select = [
# flake8-bugbear
"B",
# flake8-comprehensions
"C4",
# flake8-eradicate/eradicate
"ERA",
# isort
"I",
# pep8-naming
"N",
# flake8-pie
"PIE",
# pygrep
"PGH",
# ruff checks
"RUF",
# flake8-simplify
"SIM",
# flake8-type-checking
"TCH",
# flake8-tidy-imports
"TID",
# pyupgrade
"UP",
]
ignore = [
# whitespace-before-punctuation
"E203",
]
[tool.mypy]
exclude= 'tests'
strict = true
ignore_missing_imports = true