Skip to content

Commit

Permalink
Move metadata to pyproject.toml (#806)
Browse files Browse the repository at this point in the history
Co-authored-by: Franck Nijhof <[email protected]>
  • Loading branch information
cdce8p and frenck authored Nov 15, 2024
1 parent a092894 commit d6a63ec
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 31 deletions.
25 changes: 25 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "builder"
version = "2.1.0"
license = {text = "Apache-2.0"}
description = "Home Assistant Python wheels builder."
authors = [
{name = "The Home Assistant Authors", email = "[email protected]"}
]
keywords = ["docker", "home-assistant"]
classifiers = [
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Topic :: Home Automation",
"Development Status :: 5 - Production/Stable",
]

[project.urls]
"Homepage" = "https://home-assistant.io/"

[tool.setuptools.packages.find]
include = ["builder*"]
30 changes: 0 additions & 30 deletions setup.py

This file was deleted.

2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ commands =

[testenv:black]
commands =
black --target-version py310 --check builder tests setup.py
black --target-version py312 --check builder tests

[testenv:test]
commands =
Expand Down

0 comments on commit d6a63ec

Please sign in to comment.