mirror of
https://github.com/flakestorm/flakestorm.git
synced 2026-04-25 16:56:25 +02:00
- Rename all instances of Entropix to FlakeStorm - Rename package from entropix to flakestorm - Update all class names (EntropixConfig -> FlakeStormConfig, EntropixRunner -> FlakeStormRunner) - Update Rust module from entropix_rust to flakestorm_rust - Update README: remove cloud comparison, update links to flakestorm.com - Update .gitignore to allow docs files referenced in README - Add origin remote for VS Code compatibility - Fix missing imports and type references - All imports and references updated throughout codebase
21 lines
596 B
TOML
21 lines
596 B
TOML
[build-system]
|
|
requires = ["maturin>=1.4,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "flakestorm_rust"
|
|
version = "0.1.0"
|
|
description = "High-performance Rust extensions for flakestorm"
|
|
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 = "flakestorm_rust"
|