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
|
[build-system]
requires = ["setuptools~=69.2.0", "wheel~=0.43.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyhomeworks"
version = "1.1.2"
authors = [
{name = "Michael Dubno", email = "michael@dubno.com"},
]
license = {text = "MIT"}
description = "Lutron Homeworks Series 4 and 8 interface over Ethernet"
readme = "README.md"
requires-python = ">=3.12.0"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/dubnom/pyhomeworks"
[tool.setuptools]
platforms = ["any"]
zip-safe = true
include-package-data = true
[tool.setuptools.packages.find]
include = ["pyhomeworks*"]
[tool.setuptools.package-data]
"*" = ["py.typed"]
[tool.pylint."MESSAGES CONTROL"]
# Reasons disabled:
# format - handled by black
disable = [
"format",
]
|