forked from rrooggiieerr/rfcontrolpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.33 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "rfcontrolpy"
version = "0.0.9"
license = {text = "GPLv3"}
authors = [
{ name="Rogier van Staveren", email="[email protected]" }
]
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