-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) 路 964 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (25 loc) 路 964 Bytes
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
[package]
name = "pymath_compute"
version = "0.3.2"
edition = "2021"
description = "Tool to handle mathematical operations using Variables and Mathematical Expressions."
authors = ["ricardoleal20 <rick.leal420@gmail.com>"]
homepage = "https://pymath.ricardoleal20.dev"
documentation = "https://pymath.ricardoleal20.dev/docs/"
repository = "https://github.com/ricardoleal20/pymath_compute"
license = "MIT"
readme = "README.md"
keywords = ["scientific_computing", "applied_math", "optimization"]
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Mathematics",
]
[dependencies]
pyo3 = { version = "0.16", features = ["extension-module"] }
[lib]
name = "engine" # private module to be nested into Python package,
# needs to match the name of the function with the `[#pymodule]` attribute
path = "src/lib.rs"
crate-type = ["cdylib"]
[package.metadata.maturin]
name = "pymath_compute.engine"