Skip to content

Commit

Permalink
Update pyproject.toml according to PEP621 (#565)
Browse files Browse the repository at this point in the history
  • Loading branch information
KapJI authored Sep 19, 2024
1 parent f518212 commit 1e0f713
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,25 +1,28 @@
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"

[project]
name = "glocaltokens"
authors = [{ name = "Ilja Leiko", email = "[email protected]" }]
description = "Tool to extract Google device local authentication tokens in Python"
authors = [{name = "Ilja Leiko", email = "[email protected]"}]
readme = "README.md"
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
"Typing :: Typed",
]
description = "Tool to extract Google device local authentication tokens in Python"
keywords = [
"Authentication",
"Google Home",
"Google",
"LocalAuthenticationTokens",
]
include = ["glocaltokens/py.typed"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/leikoilja/glocaltokens"
repository = "https://github.com/leikoilja/glocaltokens"
requires-python = ">=3.9"
dynamic = ["version"]
dependencies = [
Expand All @@ -34,6 +37,7 @@ dependencies = [
]

[project.urls]
"Homepage" = "https://github.com/leikoilja/glocaltokens"
"Bug Tracker" = "https://github.com/leikoilja/glocaltokens/issues"
"Release Notes" = "https://github.com/leikoilja/glocaltokens/releases"

Expand All @@ -51,10 +55,6 @@ dev-dependencies = [
"types-protobuf>=4.25.0.20240417",
]

[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"

[tool.hatch.version]
source = "vcs"

Expand Down

0 comments on commit 1e0f713

Please sign in to comment.