-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) 路 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
39 lines (35 loc) 路 1.3 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
[build-system]
requires = ["maturin>=1.13"]
build-backend = "maturin"
[project]
name = "lmm-rs"
requires-python = ">=3.12"
description = "A language agnostic framework for emulating reality: A pure Rust, training-free, equation-based intelligence."
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Mahmoud Harmouch", email = "oss@wiseai.dev" }]
keywords = ["ai", "machine-learning", "symbolic-math", "physics-simulation", "causal-reasoning"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://wiseai.dev"
Repository = "https://github.com/wiseaidotdev/lmm"
Documentation = "https://docs.rs/lmm"
Issues = "https://github.com/wiseaidotdev/lmm/issues"
[tool.maturin]
features = ["python"]
module-name = "lmm._lmm"
python-source = "python"
manifest-path = "lmm/Cargo.toml"
[project.scripts]
lmm = "lmm.__main__:main"