File: pyproject.toml

package info (click to toggle)
pyjvcprojector 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 280 kB
  • sloc: python: 4,075; makefile: 21; sh: 5
file content (86 lines) | stat: -rw-r--r-- 2,056 bytes parent folder | download
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
[project]
name = "pyjvcprojector"
description = "A python client library for controlling a JVC Projector over a network connection."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
license = { file = "MIT" }
authors = [
    { name = "Steve Easley", email = "tardis74@yahoo.com" },
]
classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Topic :: Home Automation",
    "Topic :: Software Development :: Libraries",
    "Programming Language :: Python :: 3.10",
]
urls = { "Homepage" = "https://github.com/SteveEasley/pyjvcprojector" }
dynamic = ["version"]

dependencies = []

[project.optional-dependencies]
dev = [
    "build==1.3.0",
    "coverage==7.13.0",
    "mypy==1.19.0",
    "pytest-asyncio==1.3.0",
    "pytest==9.0.2",
    "ruff==0.14.9",
    "twine==6.2.0",
]

[build-system]
requires = ["setuptools>=75.1.0", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
packages = ["jvcprojector", "jvcprojector.command"]

[tool.setuptools.package-data]
jvcprojector = ["py.typed"]

[tool.setuptools.dynamic]
version = { attr = "jvcprojector.__version__" }

[tool.pytest.ini_options]
log_level = "DEBUG"
testpaths = "tests"
norecursedirs = ".git"
filterwarnings = [
    "ignore:.*loop argument is deprecated:DeprecationWarning"
]

[tool.ruff]
required-version = ">=0.14.9"
exclude = ["examples"]


[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["F405", "E501"]

[tool.ruff.lint.isort]
combine-as-imports = true
force-sort-within-sections = true

[tool.mypy]
disable_error_code = "annotation-unchecked"

[tool.pylint]
disable = [
    "duplicate-code",
    "too-few-public-methods",
    "too-many-arguments",
    "too-many-branches",
    "too-many-instance-attributes",
    "too-many-lines",
    "too-many-nested-blocks",
    "too-many-positional-arguments",
    "too-many-public-methods",
    "too-many-statements",
]

[project.scripts]
jvcprojector = "jvcprojector.cli:cli_entrypoint"