-
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) · 989 Bytes
/
Copy pathpyproject.toml
File metadata and controls
49 lines (41 loc) · 989 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[project]
name = "back-channel-client"
version = "0.2.0"
authors = [
{ name="Aron Radics", email="radics.aron.jozsef@gmail.com" },
]
description = "Back channel client"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.28.1",
"psutil>=5.8.0",
]
[project.scripts]
back-channel-client = "back_channel_client.back_channel_client:main"
[dependency-groups]
dev = [
"ruff>=0.14.0",
]
[project.urls]
Homepage = "https://github.com/radaron/BackChannelClient"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["back_channel_client"]
[tool.uv]
package = true
[tool.ruff]
line-length = 88
[tool.pylint.'MESSAGES CONTROL']
disable = [
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
]