-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (33 loc) · 784 Bytes
/
pyproject.toml
File metadata and controls
35 lines (33 loc) · 784 Bytes
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
[project]
name = "wattpilot"
dynamic = ["version"]
description = ''
readme = "README.md"
requires-python = ">=3.12"
keywords = []
authors = [{ name = "Cyril Jaquier", email = "cyril.jaquier@jaqpot.net" }]
classifiers = [
"Development Status :: 0 - Alpha",
"Programming Language :: Python",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
]
[tool.ruff]
target-version = "py312"
line-length = 120
extend-exclude = [".venv"]
[tool.ruff.lint]
select = [
"C4", # comprehensions
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"RUF", # ruff specific
"T20", # print
"UP", # pyupgrade
"W", # pydocstyle warning
"NPY", # numpy
"PT", # pytest
"RSE", # flake8-raise
"DTZ", # flake8-datetime
]