-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1.25 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "siliconrig"
dynamic = ["version"]
description = "Python SDK and pytest fixtures for siliconrig hardware-in-the-loop testing"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{ name = "RAWS Consulting" }]
keywords = ["embedded", "testing", "hardware-in-the-loop", "HIL", "pytest", "MCU"]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
"Topic :: System :: Hardware",
]
dependencies = [
"websockets>=13.0,<15",
"httpx>=0.27,<1",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.24",
"ruff>=0.8",
]
[project.urls]
Homepage = "https://siliconrig.dev"
Documentation = "https://siliconrig.dev/docs/guides/python-sdk"
Repository = "https://github.com/siliconrig/srig-python"
[project.entry-points.pytest11]
siliconrig = "siliconrig.plugin"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["src/siliconrig"]
[tool.ruff]
target-version = "py310"
line-length = 99