Skip to content

Commit

Permalink
Release 1.0.76
Browse files Browse the repository at this point in the history
  • Loading branch information
myakove committed Oct 22, 2024
1 parent 325a788 commit 20a77f2
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ line-length = 120
fix = true
output-format = "grouped"

[tool.ruff.format]
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
[tool.ruff.format]
exclude = [ ".git", ".venv", ".mypy_cache", ".tox", "__pycache__" ]

[tool.mypy]
check_untyped_defs = true
Expand All @@ -17,21 +17,21 @@ show_error_codes = true
warn_unused_ignores = true

[tool.hatch.build.targets.wheel]
packages = ["webhook_server_container"]
packages = [ "webhook_server_container" ]

[tool.uv]
dev-dependencies = ["ipdb>=0.13.13", "ipython>=8.12.3"]
dev-dependencies = [ "ipdb>=0.13.13", "ipython>=8.12.3" ]

[project]
name = "github-webhook-server"
version = "1.0.75"
version = "1.0.76"
requires-python = ">=3.8"
description = "A webhook server to manage Github reposotories and pull requests."
readme = "README.md"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Operating System :: OS Independent"
]
dependencies = [
"build>=1.2.2.post1",
Expand All @@ -51,23 +51,23 @@ dependencies = [
"string-color>=1.2.3",
"timeout-sampler>=0.0.46",
"uvicorn>=0.31.0",
"uwsgi>=2.0.27",
"uwsgi>=2.0.27"
]

[[project.authors]]
name = "Meni Yakove"
email = " [email protected]"
[[project.authors]]
name = "Meni Yakove"
email = " [email protected]"

[[project.authors]]
name = "Ruth Netser"
email = "[email protected]"
[[project.authors]]
name = "Ruth Netser"
email = "[email protected]"

[project.urls]
homepage = "https://github.com/myakove/github-webhook-server"
repository = "https://github.com/myakove/github-webhook-server"
Download = "https://quay.io/repository/myakove/github-webhook-server"
"Bug Tracker" = "https://github.com/myakove/github-webhook-server/issues"
[project.urls]
homepage = "https://github.com/myakove/github-webhook-server"
repository = "https://github.com/myakove/github-webhook-server"
Download = "https://quay.io/repository/myakove/github-webhook-server"
"Bug Tracker" = "https://github.com/myakove/github-webhook-server/issues"

[build-system]
requires = ["hatchling"]
requires = [ "hatchling" ]
build-backend = "hatchling.build"

0 comments on commit 20a77f2

Please sign in to comment.