-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
84 lines (69 loc) · 1.8 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
72
73
74
75
76
77
78
79
80
81
82
83
84
[tool.poetry]
name = "website"
version = "0.1.0"
description = ""
authors = ["Sébastien Eustace <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10"
cleo = "^2.1.0"
PyYAML = "^6.0"
tomli = "^2.0"
httpx = "^0.26"
tomli-w = "^1.0"
[tool.poetry.group.dev.dependencies]
pre-commit = ">=2.13.0"
[tool.ruff]
fix = true
unfixable = [
"ERA", # do not autoremove commented out code
]
target-version = "py310"
line-length = 88
extend-select = [
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"ERA", # flake8-eradicate/eradicate
"I", # isort
"N", # pep8-naming
"PIE", # flake8-pie
"PGH", # pygrep
"RUF", # ruff checks
"SIM", # flake8-simplify
"TCH", # flake8-type-checking
"TID", # flake8-tidy-imports
"UP", # pyupgrade
]
[tool.ruff.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.ruff.isort]
force-single-line = true
lines-between-types = 1
lines-after-imports = 2
required-imports = ["from __future__ import annotations"]
[tool.black]
target-version = ["py310"]
preview = true
[tool.website.config]
baseURL = "https://python-poetry.org/"
languageCode = "en-us"
title = "Poetry - Python dependency management and packaging made easy"
ignoreFiles = ["^assets/src"]
pygmentsUseClasses = true
[tool.website.config.permalinks]
blog = "/blog/:title/"
categories = "/blog/category/:title/"
tags = "/blog/tag/:title/"
[tool.website.config.params]
description = "Python dependency management and packaging made easy"
[tool.website.config.params.documentation]
defaultVersion = "1.8"
[tool.website.config.markup.goldmark.renderer]
unsafe = true
[tool.website.config.minify.tdewolff.html]
keepWhitespace = true
[tool.website.versions]
"1.8" = "1.8"
"1.7" = "1.7"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"