summaryrefslogtreecommitdiffstatshomepage
path: root/pyproject.toml
blob: 221ae631345a09ca2891d2c0437cda18fe05d233 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[build-system]
requires = ["maturin>=1.8,<2.0"]
build-backend = "maturin"

[project]
name = "soon-bin"
requires-python = ">=3.10"
description = "Predict your next shell command based on history — like shell autocomplete, but MORE stupid"
authors = [
    { name = "HsiangNianian", email = "i@jyunko.cn" }
]
classifiers = [
    "Programming Language :: Rust",
    "Programming Language :: Python :: Implementation :: CPython",
    "Programming Language :: Python :: Implementation :: PyPy",
]
dynamic = ["version"]
dependencies = [
    "rich>=14.0.0",
]

[tool.maturin]
bindings = "bin"
module-name = "soon"