-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (72 loc) · 1.74 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
85
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "rpipe"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"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.12"
dependencies = [
# Client
"zstandard[cffi]",
"pycryptodomex",
"cryptography",
"argcomplete",
"requests",
"tqdm",
# Server
"zstdlib>=0.0.8",
"waitress",
"flask",
# Both
"human_readable",
]
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 = ["py312", "py313"]
[tool.ruff]
line-length = 110
[tool.ruff.lint]
ignore=["E731"]
[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"]