-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (71 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
82 lines (71 loc) · 1.83 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dashio"
version = "3.5.10"
description = "DashIO interface library"
readme = "README.md"
authors = [{ name = "James Boulton", email = "james@dashio.com" }]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"paho-mqtt>=2.0.0",
"pyzmq",
"python-dateutil",
"zeroconf",
"shortuuid",
"pyserial",
]
[project.optional-dependencies]
dev = ["pytest>=6.0", "pytest-cov>=2.0", "flake8>=3.9", "tox>=4.0"]
[project.urls]
Homepage = "https://dashio.io"
Repository = "https://github.com/dashio-connect/python-dashio"
Download = "https://github.com/dashio-connect/python-dashio"
[project.scripts]
c64_encode = "dashio.utilities.c64_encode:main"
c64_decode = "dashio.utilities.c64_decode:main"
dashio_data_exporter = "dashio.utilities.dashio_data_exporter:main"
[tool.setuptools]
zip-safe = false
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.package-data]
dashio = ["py.typed"]
[tool.pytest.ini_options]
addopts = "--cov=dashio"
testpaths = ["tests"]
[tool.mypy]
mypy_path = "dashio"
check_untyped_defs = true
disallow_any_generics = true
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_redundant_casts = true
warn_return_any = true
warn_unreachable = true
warn_unused_configs = true
no_implicit_reexport = true
[tool.flake8]
max-line-length = 260
per-file-ignores = "__init__.py:F401"
exclude = [
".git",
"__pycache__",
".tox",
"venv",
".venv",
"build",
"dist",
"*.egg-info",
]