-
-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathpyproject.toml
More file actions
105 lines (90 loc) · 2.6 KB
/
Copy pathpyproject.toml
File metadata and controls
105 lines (90 loc) · 2.6 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "w1thermsensor"
dynamic = ["version"]
description = "A Python package and CLI tool to work with w1 temperature sensors like DS1822, DS18S20 & DS18B20 on the Raspberry Pi, Beagle Bone and other devices."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{name = "Timo Furrer", email = "tuxtimo@gmail.com"},
]
maintainers = [
{name = "Timo Furrer", email = "tuxtimo@gmail.com"},
]
keywords = ["w1", "w1-therm", "therm", "sensor", "raspberry", "raspberry pi", "gpio", "ds"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10"
dependencies = ["click>=8"]
[project.optional-dependencies]
async = ["aiofiles"]
tests = [
"aiofiles",
"coverage[toml]>=7",
"pytest>=8",
"pytest-mock",
"pytest-asyncio>=0.21",
]
dev = [
"aiofiles",
"coverage[toml]>=7",
"pytest>=8",
"pytest-mock",
"pytest-asyncio>=0.21",
"ruff",
"mypy",
"types-aiofiles",
"towncrier",
]
[project.urls]
Homepage = "https://github.com/timofurrer/w1thermsensor"
Repository = "https://github.com/timofurrer/w1thermsensor"
"Bug Tracker" = "https://github.com/timofurrer/w1thermsensor/issues"
[project.scripts]
w1thermsensor = "w1thermsensor.cli:cli"
[tool.setuptools.dynamic]
version = {attr = "w1thermsensor.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E203"]
[tool.ruff.lint.isort]
known-first-party = ["w1thermsensor"]
[tool.towncrier]
package = "w1thermsensor"
package_dir = "src/w1thermsensor"
filename = "CHANGELOG.rst"
directory = "changelog/"
title_format = "w1thermsensor {version} ({project_date})"
template = "changelog/template.rst"
[tool.pytest.ini_options]
testpaths = ["tests", "src"]
asyncio_mode = "auto"
[tool.mypy]
ignore_missing_imports = true
[tool.coverage.run]
branch = true
parallel = true
source = ["w1thermsensor"]
[tool.coverage.paths]
source = ["src", ".tox/*/site-packages"]
[tool.coverage.report]
show_missing = true