-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.44 KB
/
pyproject.toml
File metadata and controls
57 lines (48 loc) · 1.44 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
[build-system]
requires = ["hatchling>=1.24", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.build.hooks.vcs]
version-file = "rfcontrolpy/_version.py"
[tool.hatch.version]
source = "vcs"
[project]
name = "rfcontrolpy"
dynamic = ["version"]
license = {text = "GPLv3"}
authors = [
{ name="Rogier van Staveren", email="rogier@batoid.com" }
]
description = "Library with protocol support for different 433MHz switches and weather stations for the RFControl Arduino library."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Home Automation",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
]
[project.urls]
Homepage = "https://github.com/rrooggiieerr/rfcontrolpy"
Issues = "https://github.com/rrooggiieerr/rfcontrolpy/issues"
[tool.isort]
# https://github.com/PyCQA/isort/wiki/isort-Settings
profile = "black"
skip = "*/_version.py"
[tool.black]
exclude = "rfcontrol/_version.py"
[tool.pylint]
ignore = "_version.py"
recursive = "y"
[tool.mypy]
python_version = "3.11"
mypy_path = "rfcontrol"
[[tool.mypy.overrides]]
module = ["*._version"]
ignore_missing_imports = true