-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (49 loc) · 1.53 KB
/
pyproject.toml
File metadata and controls
63 lines (49 loc) · 1.53 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
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["hatchling >= 1.26", "wheel >= 0.45.0"]
build-backend = "hatchling.build"
[project]
name = "sensirion-driver-adapters"
description = "Adapter classes to use sensirion_i2c_driver package"
version = "2.4.0"
readme = "README.md"
requires-python = ">=3.8,<4.0"
authors = [
{ name = "Sensirion", email = "[email protected]" },
]
license = "BSD-3-Clause"
license-files = ["LICENSE"]
keywords = ["sensirion", "driver", "driver-generator"]
classifiers = [
'Intended Audience :: Developers',
'License :: Other/Proprietary License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules'
]
dependencies = [
"sensirion-i2c-driver~=1.0.2",
"sensirion-shdlc-driver~=1.0.1",
"sensirion-shdlc-sensorbridge~=1.0.0"
]
[project.optional-dependencies]
docs = [
"sphinx-rtd-theme==3.0.2",
"sphinx==8.2.3",
"lazy-object-proxy ~=1.7.1",
"docutils~=0.18.0",
"sphinx_rtd_theme~=1.3.0",
"sphinx-autoapi~=3.0.0"
]
test = [
"flake8>=7.1.0",
"mock~=5.2.0",
"pytest>=8.3.5",
"pytest-cov>=5.0.0",
"setuptools>=73.2.0"
]
[project.urls]
Changelog = "https://github.com/Sensirion/python-driver-adapters/blob/master/CHANGELOG.rst"
Repository = "https://github.com/Sensirion/python-driver-adapters"
Documentation = "https://sensirion.github.io/python-driver-adapters"