-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (42 loc) · 1.23 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (42 loc) · 1.23 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
[build-system]
requires = ["maturin>=1.7,<2"]
build-backend = "maturin"
[project]
name = "infotheory-rs"
version = "1.1.1"
description = "Python bindings for the infotheory Rust library"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "ISC OR Apache-2.0" }
authors = [{ name = "infotheory contributors" }]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Rust",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://infotheory.tech"
Repository = "https://github.com/turtle261/infotheory"
[dependency-groups]
dev = [
"maturin>=1.7,<2",
"pytest>=8.0",
"pytest-cov>=7.0.0",
]
[tool.maturin]
manifest-path = "infotheory_py/Cargo.toml"
module-name = "infotheory_rs._core"
python-source = "python"
profile = "python-release"
editable-profile = "python-release"
features = ["python-extension", "backend-rosa", "backend-mamba", "backend-rwkv", "backend-zpaq"]
include = [
{ path = "python/infotheory_rs/**/*.py", format = ["sdist", "wheel"] },
]
[tool.pytest.ini_options]
testpaths = ["python/tests"]
markers = [
"vm: tests that require bindings compiled with the vm feature",
]