-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
126 lines (111 loc) · 2.21 KB
/
Copy pathpyproject.toml
File metadata and controls
126 lines (111 loc) · 2.21 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "rpipe"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
keywords = ["remote", "pipe"]
license = {text = "GPLv3"}
description = "A little python remote pipe server and client."
urls = {Homepage = "https://github.com/zwimer/rpipe"}
requires-python = ">= 3.14"
dependencies = [
# Client
"zstandard[cffi]",
"pycryptodomex",
"cryptography",
"argcomplete",
"requests",
"tqdm",
# Server
"zstdlib>=0.3.0",
"waitress",
"flask",
# Both
"human_readable",
"psutil",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
rpipe = "rpipe.client:cli"
rpipe_server = "rpipe.server:cli"
[tool.setuptools]
include-package-data = true
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
namespaces = false
[tool.setuptools.package-data]
rpipe = ["py.typed"]
[tool.setuptools.dynamic.version]
attr = "rpipe.__version__"
# Tools
[tool.pylint]
disable = [
"unnecessary-lambda-assignment",
"missing-function-docstring",
"missing-module-docstring",
"missing-class-docstring",
"too-few-public-methods",
"line-too-long"
]
[tool.black]
line-length = 110
target-version = ["py314"]
[tool.ruff]
line-length = 110
[tool.ruff.lint]
ignore=[
"ANN401",
"D10", "D2",
"D415",
"DTZ005", # Do I want this? TODO:
"I001",
"PLR0911",
"PLR0913",
"PLR0915",
"PLR2004",
"S101", "S104",
"TID252",
]
extend-select = [
"ANN",
"ARG",
"ASYNC",
"C4",
"D",
"DTZ",
"PERF",
"PGH",
"PIE",
"PL",
"PTH",
"RET",
"S",
"SIM",
"TID"
]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401", "F403"]
[tool.bandit]
skips = ["B101", "B104", "B201"]
[tool.vulture]
ignore_names = ["cli", "_help", "_show_version", "_channel", "strict_slashes"]
min_confidence = 70
paths = ["rpipe"]
[tool.droast]
preset = "strict"
skip = ["DF011", "DF022", "DF033", "DF051", "DF062", "DF064"]
min-severity = "info"
no-roast = true
[tool.droast.shellcheck]
mode = "auto"