Skip to content

Commit 61e1ab6

Browse files
author
Gexiro Global Enterprises Ltd
committed
fix(audit): bound dependencies and complete metadata
1 parent e45d188 commit 61e1ab6

2 files changed

Lines changed: 14 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
## [Unreleased]
44

55
- Ship the inline type-information marker and explicit license-file metadata.
6+
- Bound build and development dependencies to tested next-major ceilings and add complete
7+
license, audience, Python, security-topic, and typed-package classifiers.
68

79
## [0.1.0]
810

pyproject.toml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=68"]
2+
requires = ["setuptools>=68,<77", "wheel>=0.41,<1"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -8,10 +8,18 @@ version = "0.1.0"
88
description = "Policy-gated application of untrusted unified diffs."
99
readme = "README.md"
1010
requires-python = ">=3.9"
11-
license = "Apache-2.0"
12-
license-files = ["LICENSE"]
11+
license = {file = "LICENSE"}
1312
authors = [{name = "Gexiro Global Enterprises Ltd"}]
1413
keywords = ["diff", "patch", "security", "policy", "git"]
14+
classifiers = [
15+
"License :: OSI Approved :: Apache Software License",
16+
"Intended Audience :: Developers",
17+
"Programming Language :: Python :: 3",
18+
"Programming Language :: Python :: 3.9",
19+
"Programming Language :: Python :: 3.13",
20+
"Topic :: Security",
21+
"Typing :: Typed",
22+
]
1523
dependencies = []
1624

1725
[project.urls]
@@ -22,7 +30,7 @@ Repository = "https://github.com/gexiro-global/patch-gate"
2230
patch-gate = "patch_gate.cli:main"
2331

2432
[project.optional-dependencies]
25-
dev = ["pytest>=8"]
33+
dev = ["pytest>=8,<10", "build>=1,<2"]
2634

2735
[tool.setuptools.packages.find]
2836
where = ["src"]

0 commit comments

Comments
 (0)