File: pyproject.toml

package info (click to toggle)
pyhomeworks 1.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 144 kB
  • sloc: python: 433; makefile: 7
file content (40 lines) | stat: -rw-r--r-- 916 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
[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",
]