diff options
| author | 2025-11-06 11:26:52 +0800 | |
|---|---|---|
| committer | 2025-11-06 11:26:52 +0800 | |
| commit | 4f7762c1bb7ce719c72c466cebdb00d5def8ea5e (patch) | |
| tree | 38fb539574f0c55e19dc5111b8680048961b0b80 /pyproject.toml | |
| parent | 3d4081897e267c7fae5f11a7dd55826574e6941b (diff) | |
| download | mvp-4f7762c1bb7ce719c72c466cebdb00d5def8ea5e.tar.gz mvp-4f7762c1bb7ce719c72c466cebdb00d5def8ea5e.zip | |
refactor: refactor project structure and update configurations for MVP implementation
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 |
