-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
33 lines (30 loc) · 1.11 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
[build-system]
requires = ["maturin>=1.7,<2.0"]
build-backend = "maturin"
[project]
name = "pid-core-rs"
description = "Typed Python bindings for empirical categorical and fitted-quantized PID plus report-first KSG mutual information"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT OR Apache-2.0" }
authors = [{ name = "Sepehr Mahmoudian" }]
keywords = ["information-theory", "mutual-information", "partial-information-decomposition", "entropy", "synergy"]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: Apache Software License",
]
dependencies = ["numpy>=1.26"]
dynamic = ["version"]
[project.urls]
Repository = "https://github.com/sepahead/pid-rs"
Homepage = "https://github.com/sepahead/pid-rs"
[tool.maturin]
# The Rust crate lives alongside this file; build the stable-ABI extension module.
manifest-path = "Cargo.toml"
module-name = "pid_core_rs"
features = ["pyo3/extension-module"]
strip = true