generated from PioneersHub/conference
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
49 lines (45 loc) · 1.13 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
[project]
name = "PyCon DE & PyData 2025"
version = "0.3.4"
description = "Public documentation for organizing our volunteer-driven conference."
authors = [
{ name = "Alexander CS Hendorf", email = "[email protected]" }
]
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = "https://github.com/PioneersHub/pyconde25-conference"
[tool.ruff]
line-length = 100
target-version = "py312"
extend-exclude = ["*.md"]
[tool.ruff.lint]
select = [
"F", # pyflakes
"E", "W", # pycodestyle
"A", # flake8-builtins
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
"ARG", # flake8-unused-arguments
"PL", # pylint
"TID", # tidy
"I", # isort
"N", # pep8-naming
"UP" # pyupgrade
]
ignore = [
"E501", # may cause conflicts with ruff formatter
"W191"
]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-format = true