-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (38 loc) · 1.06 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
# Copyright (c) 2024 Antmicro <www.antmicro.com>
#
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "renode-ws-proxy"
version = "0.0.1"
authors = [{name = "Antmicro Ltd.", email = "[email protected]"}]
description = "Renode WebSocket Proxy for remote instances"
dependencies = [
"websockets==13.*",
"telnetlib3==2.0.*",
"psutil==6.0.*",
"pyrenode3@git+https://github.com/antmicro/pyrenode3.git"
]
classifiers = [
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
]
[project.scripts]
renode-ws-proxy = 'renode_ws_proxy.ws_proxy:run'
[project.optional-dependencies]
dev = [
'pytest==8.3.*',
'ruff==0.6.*',
'pyright==1.1.*',
]
[tool.setuptools]
packages = ["renode_ws_proxy", "renode_instance"]
[tool.pyright]
stubPath = "stubs"