mirror of
https://github.com/flakestorm/flakestorm.git
synced 2026-05-06 06:13:14 +02:00
22 lines
590 B
TOML
22 lines
590 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["maturin>=1.4,<2.0"]
|
||
|
|
build-backend = "maturin"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "entropix_rust"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "High-performance Rust extensions for Entropix"
|
||
|
|
requires-python = ">=3.9"
|
||
|
|
classifiers = [
|
||
|
|
"Programming Language :: Python :: 3",
|
||
|
|
"Programming Language :: Python :: 3.10",
|
||
|
|
"Programming Language :: Python :: 3.11",
|
||
|
|
"Programming Language :: Python :: 3.12",
|
||
|
|
"Programming Language :: Rust",
|
||
|
|
"License :: OSI Approved :: Apache Software License",
|
||
|
|
]
|
||
|
|
|
||
|
|
[tool.maturin]
|
||
|
|
features = ["pyo3/extension-module"]
|
||
|
|
module-name = "entropix_rust"
|