forked from Brill-Power/python-thingset
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1014 Bytes
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1014 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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "python_thingset"
version = "0.2.6"
description = "A Python library for ThingSet functionality"
authors = [
{ name = "Adam Mitchell", email = "adam.mitchell@brillpower.com" }
]
license = "Apache-2.0"
license-files = [ "LICEN[CS]E*" ]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"can-isotp==2.0.6",
"cbor2==5.6.5",
"pyserial==3.5",
"python-can==4.5.0"
]
[project.optional-dependencies]
dev = [
"pytest==8.3.5",
"pytest-cov==5.0.0",
"ruff==0.6.7"
]
[project.urls]
homepage = "https://pypi.org/project/python-thingset/"
repository = "https://github.com/Brill-Power/python-thingset"
documentation = "https://python-thingset.readthedocs.io/en/latest/"
[project.scripts]
thingset = "python_thingset.cli:run_cli"
[tool.coverage.run]
omit = [
"*/tests/*",
]