aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml1
-rw-r--r--pyproject.toml7
2 files changed, 5 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 2ec763e..25e214f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -3,6 +3,7 @@ name = "soon"
version = "0.1.0"
edition = "2021"
+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# 生成 CLI 可执行文件
[[bin]]
diff --git a/pyproject.toml b/pyproject.toml
index 4b5793b..85529c7 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -5,6 +5,10 @@ build-backend = "maturin"
[project]
name = "soon"
requires-python = ">=3.10"
+description = "A Rust CLI bundled as a Python package"
+authors = [
+ { name = "HsiangNianian", email = "i@jyunko.cn" }
+]
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
@@ -18,6 +22,3 @@ dependencies = [
[tool.maturin]
bindings = "bin"
module-name = "soon"
-
-# [project.scripts]
-# soon = "soon:__main__"