-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
20 lines (18 loc) · 848 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "ssam"
version = "0.2.0" #also update in main.rs
authors = ["Maarten van Gompel <proycon@anaproy.nl>"]
description = "Ssam, short for split sampler, splits one or more text-based input files into multiple sets using random sampling. This is useful for splitting data into a training, test and development sets, or whatever sets you desire."
homepage = "https://github.com/proycon/ssam/"
repository = "https://github.com/proycon/ssam"
documentation = "https://docs.rs/ssam"
categories = ["science","text-processing", "command-line-utilities"]
keywords = ["nlp","text-processing","data-science","linguistics"]
license = "GPL-3.0+"
readme = "README.md"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = "2.33.3"
rand = "0.7.3"
rand_pcg = "0.2.1"