-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
58 lines (49 loc) · 1.42 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
52
53
54
55
56
57
58
[build-system]
requires = ["hatchling>=1.24", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.build.hooks.vcs]
version-file = "benqprojector/_version.py"
[tool.hatch.version]
source = "vcs"
[project]
name = "benqprojector"
dynamic = ["version"]
license = {text = "Apache-2.0"}
authors = [
{ name="Rogier van Staveren", email="rogier@batoid.com" }
]
description = "Library to control BenQ projectors."
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 4 - Beta",
"Topic :: Home Automation"
]
dependencies = [
"pyserial>=3.5"
]
[project.urls]
Homepage = "https://github.com/rrooggiieerr/benqprojector.py"
Issues = "https://github.com/rrooggiieerr/benqprojector.py/issues"
[tool.isort]
# https://github.com/PyCQA/isort/wiki/isort-Settings
profile = "black"
skip = "benqprojector/_version.py"
[tool.black]
exclude = "benqprojector/_version.py"
[tool.pylint]
ignore = "_version.py"
recursive = "y"
[tool.mypy]
python_version = "3.11"
mypy_path = "benqprojector"
[[tool.mypy.overrides]]
module = ["serial.*", "*._version"]
ignore_missing_imports = true