Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pyproject.toml according to PEP621 #565

Merged
merged 1 commit into from
Sep 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading