forked from ZewMSM/ZewSFS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (41 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
49 lines (41 loc) · 1.27 KB
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
##################################################
# PyPi Config
##################################################
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sfs2x"
version = "0.1.0.1"
description = "Python-Based implementation of SmartFoxServer2X (SFS2X) Protocol."
authors = [{name="Zewsic", email="me@zewsic.pro"}]
readme = "readme.md"
license = {text = "MIT"}
dependencies = []
##################################################
# Ruff Config
##################################################
[tool.ruff]
line-length = 142
indent-width = 4
target-version = "py312"
extend-exclude = ["tests", "handle-all.py"]
[tool.ruff.lint]
ignore = [
"D102", # undocumented-public-method
"D103", # undocumented-public-function
"D100", # undocumented-public-module
"D104", # undocumented-public-package
"D106", # undocumented-public-nested-class
"D107", # undocumented-public-init
"D203", # one-blank-line-before-class
"D212", # multi-line-summary-first-line
"COM812", # missing-trailing-comma
"RUF001", # ambiguous-unicode-character-string
]
select = ["ALL"]
fixable = ["ALL"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
docstring-code-line-length = "dynamic"