diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/pyproject.toml b/pyproject.toml index 7297f99..73ec6d0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,13 +3,13 @@ requires = ["maturin>=1.0,<2.0"] build-backend = "maturin" [project] -name = "maturin_template" +name = "mvp" dynamic = ["version"] -description = "A Rust CLI bundled as a Python package" +description = "MVP Implementation in Rust and Python by HydroRoll-Team" authors = [ - { name = "Your Name", email = "your.email@example.com" } + { name = "HsiangNianian", email = "leader@hydroroll.team" } ] -requires-python = ">=3.8" +requires-python = ">=3.11" readme = "README.md" license = { text = "MIT" } classifiers = [ @@ -18,7 +18,10 @@ classifiers = [ "Programming Language :: Python :: 3", ] +[project.scripts] +mvp = "mvp.__main__:main" + [tool.maturin] bindings = "bin" # manifest-path = "Cargo.toml" -module-name = "maturin_template"
\ No newline at end of file +module-name = "mvp"
\ No newline at end of file |
