[package]
edition = "2021"
name = "phop-cli"
version = "0.1.0"
authors = ["COOLJAPAN OÜ (Team KitaSan) <contact@cooljapan.tech>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Command-line interface for phop: `phop discover data.csv`"
homepage = "https://github.com/cool-japan/phop"
documentation = "https://docs.rs/phop-cli"
readme = "README.md"
keywords = [
"symbolic-regression",
"equation-discovery",
"machine-learning",
"cli",
"eml",
]
categories = [
"command-line-utilities",
"science",
"mathematics",
]
license = "Apache-2.0"
repository = "https://github.com/cool-japan/phop"
[features]
default = []
gpu-cuda = ["phop-core/gpu-cuda"]
gpu-metal = ["phop-core/gpu-metal"]
[[bin]]
name = "phop"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.csv]
version = "1"
[dependencies.phop-core]
version = "0.1.0"
[dependencies.serde_json]
version = "1"
[dev-dependencies.assert_cmd]
version = "2.2.2"
[dev-dependencies.predicates]
version = "3.1.4"
[dev-dependencies.tempfile]
version = "3.27.0"