Skip to content

Commit 2cf311a

Browse files
committed
Add PyPI metadata (authors, classifiers, readme, URLs)
Signed-off-by: Cong Wang <cwang@multikernel.io>
1 parent 61524a0 commit 2cf311a

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

pyproject.toml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,22 @@ requires = ["setuptools>=64"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
6-
name = "BranchContext"
6+
name = "branching"
77
version = "0.1.0"
88
description = "Unified branching for speculative execution: filesystem, process, and memory"
99
requires-python = ">=3.10"
1010
license = "Apache-2.0"
11+
readme = "README.md"
12+
authors = [
13+
{ name = "Cong Wang", email = "cwang@multikernel.io" },
14+
]
15+
classifiers = [
16+
"Programming Language :: Python :: 3",
17+
"Operating System :: POSIX :: Linux",
18+
]
19+
20+
[project.urls]
21+
Homepage = "https://github.com/multikernel/branching"
1122

1223
[project.scripts]
1324
branching = "cli:main"

setup.cfg

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
name = branching
33
version = 0.1.0
44
description = Unified branching for speculative execution: filesystem, process, and memory
5+
author = Cong Wang
6+
author_email = cwang@multikernel.io
7+
url = https://github.com/multikernel/branching
8+
license = Apache-2.0
59

610
[options]
711
python_requires = >=3.10

0 commit comments

Comments
 (0)