-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (45 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (45 loc) · 1.44 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "bitlisp"
version = "0.0.1"
description = "Executable specification for a CLVM-derived Bitcoin predicate VM and condition validation layer"
readme = "README.md"
license = "MIT"
requires-python = ">=3.14"
# Runtime dependencies stay empty on purpose. The reference
# implementation is the spec artifact and must be self-contained.
dependencies = []
[project.optional-dependencies]
dev = [
"pytest==9.1.1",
"hypothesis==6.161.5",
]
# Wheel oracles are pinned here. Where no usable wheel exists an
# oracle is vendored from a tagged upstream release instead (the
# Bitcoin Core test framework under tools/oracle/). Pin bumps and
# snapshot refreshes are governance events, see CLAUDE.md and
# spec/VM.md provenance.
oracles = [
"clvm==0.9.15",
"chia-rs==0.46.0",
]
[project.scripts]
bitlisp = "bitlisp_tools.repl:main"
bitlisp-run = "bitlisp_tools.cli:main"
bitlisp-asm = "bitlisp_tools.cli:asm_main"
bitlisp-disasm = "bitlisp_tools.cli:disasm_main"
bitlisp-compile = "bitlisp_tools.cli:compile_main"
bitlisp-curry = "bitlisp_tools.cli:curry_main"
bitlisp-uncurry = "bitlisp_tools.cli:uncurry_main"
[tool.setuptools]
package-dir = {"" = "python"}
packages = ["bitlisp", "bitlisp_tools"]
[tool.pytest.ini_options]
testpaths = ["python/tests"]
[tool.ruff]
line-length = 88
target-version = "py314"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP"]