mirror of
https://github.com/UNITRONIX/BetterDesk.git
synced 2026-09-10 17:45:42 +00:00
0874d4f3d9
Updated the entire project to AGPL-3.0, including all components and documentation. The stable releases up to v3.3.x will remain under Apache 2.0 until the next major feature release. Withdrawn and recreated French and Traditional Chinese translations under the new license. Updated relevant documentation and changelog to reflect these changes.
24 lines
510 B
TOML
24 lines
510 B
TOML
[build-system]
|
|
requires = ["setuptools>=68.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "betterdesk-cdap"
|
|
version = "1.0.0"
|
|
description = "Python SDK for BetterDesk CDAP (Connected Device Automation Protocol)"
|
|
readme = "README.md"
|
|
license = {text = "AGPL-3.0"}
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"websockets>=12.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0",
|
|
"pytest-asyncio>=0.21",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["betterdesk_cdap*"]
|