File: pyproject.toml

package info (click to toggle)
pyhomee 1.3.8-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 236 kB
  • sloc: python: 2,245; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 822 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
[project]
name = "pyHomee"
version = "1.3.8"
description = "a python library to interact with homee"
readme = "README.md"
license = "MIT"
requires-python = ">= 3.11"
dependencies = [
    "aiohttp>=3.11",
    "websockets>=13",
]
authors = [
  {name = "Taraman17"}
]
classifiers=[
    "Programming Language :: Python :: 3",
    "Operating System :: OS Independent",
]

[project.urls]
Repository = "https://github.com/Taraman17/pyHomee"

[build-system]
requires = ["setuptools >= 80.0.0"]
build-backend = "setuptools.build_meta"

[tool.semantic_release]
version_toml = ["pyproject.toml:project.version"]
branch = "master"
commit_parser = "conventional"
upload_to_PyPI = true
upload_to_release = true

[tool.setuptools]
include-package-data = false

[tool.setuptools.packages.find]
include = ["pyHomee*"]
exclude = ["tests*"]