-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from mvdwetering/add_pyproject.tom
Switch to pyproject.toml
- Loading branch information
Showing
11 changed files
with
48 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[build-system] | ||
requires = ["setuptools>=62.3"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[tool.setuptools.package-data] | ||
aiohuesyncbox = ["py.typed"] | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["aiohuesyncbox*"] | ||
|
||
|
||
[project] | ||
name = "aiohuesyncbox" | ||
version = "0.0.28" | ||
description = "Asyncio package to communicate with a Philips Hue Play HDMI Sync Box." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
authors = [ | ||
{name = "Michel van de Wetering", email = "[email protected]" }, | ||
] | ||
license = { text = "Apache-2.0" } | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"Topic :: Home Automation", | ||
"Topic :: Software Development :: Libraries", | ||
] | ||
dependencies = ["aiohttp>=3.9.0,<4"] | ||
|
||
urls = { Homepage = "https://github.com/mvdwetering/aiohuesyncbox" } | ||
|
||
[project.optional-dependencies] | ||
test = [ | ||
"mypy==1.11.0", | ||
"ruff==0.5.5", | ||
] |
This file was deleted.
Oops, something went wrong.