-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 931 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 931 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
30
31
32
[tool.poetry]
name = "opa-wasm"
version = "0.3.2"
description = "Open Policy Agent WebAssembly SDK for Python"
authors = ["Imtiaz Mangerah <Imtiaz_Mangerah@a2d24.com>"]
license = "MIT"
readme = 'README.md'
keywords = ['opa', 'wasm', 'policy']
homepage = "https://github.com/a2d24/python-opa-wasm"
repository = "https://github.com/a2d24/python-opa-wasm"
documentation = "https://github.com/a2d24/python-opa-wasm"
[tool.poetry.dependencies]
python = "^3.8"
wasmer = "^1.0.0"
wasmer-compiler-llvm = {version = "^1.0.0", optional = true}
wasmer-compiler-cranelift = {version = "^1.0.0", optional = true}
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
pytest-cov = "^2.12.1"
wasmer-compiler-llvm = "^1.0.0"
wasmer-compiler-cranelift = "^1.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
cranelift = ["wasmer-compiler-cranelift"]
llvm = ["wasmer-compiler-llvm"]