-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 823 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "exhash"
version = "0.3.5"
description = "Verified line-addressed file editor using lnhash addresses"
license = {text = "MIT OR Apache-2.0"}
requires-python = ">=3.10"
readme = "README.md"
authors = [{name = "Jeremy Howard", email = "j@fast.ai"}]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
]
[project.urls]
Homepage = "https://github.com/AnswerDotAI/exhash"
Repository = "https://github.com/AnswerDotAI/exhash"
Issues = "https://github.com/AnswerDotAI/exhash/issues"
[project.entry-points.pyskills]
exhash = "exhash.skill"
[tool.maturin]
features = ["extension-module"]
python-source = "python"
module-name = "exhash.exhash"
data = "python/exhash.data"