diff options
| author | 2026-01-29 17:12:55 +0800 | |
|---|---|---|
| committer | 2026-01-29 17:12:55 +0800 | |
| commit | f1c7d4005768079b0b8e8fac15ad9b191b700022 (patch) | |
| tree | 85651a076899b506ee7de0ab413a414c527688f0 | |
| parent | 637cba626c776d0fdad52511e46a5eeb15f7241a (diff) | |
| download | DropIn-f1c7d4005768079b0b8e8fac15ad9b191b700022.tar.gz DropIn-f1c7d4005768079b0b8e8fac15ad9b191b700022.zip | |
chore: Rename project from pyo3_template to dropin and update related files
| -rw-r--r-- | Cargo.toml | 13 | ||||
| -rw-r--r-- | pyproject.toml | 18 | ||||
| -rw-r--r-- | src/dropin/__init__.py (renamed from src/pyo3_template/__init__.py) | 0 | ||||
| -rw-r--r-- | src/dropin/__main__.py (renamed from src/pyo3_template/__main__.py) | 0 | ||||
| -rw-r--r-- | src/dropin/_core.pyi (renamed from src/pyo3_template/_core.pyi) | 0 |
5 files changed, 15 insertions, 16 deletions
@@ -1,15 +1,14 @@ [package] -name = "pyo3_template" +name = "dropin" version = "0.0.1" edition = "2021" -description = "A Pyo3 Project Template For HydroRoll." +description = "Minecraft Instances Manager" license = "MIT" -documentation = "https://{project}.hydroroll.team/" -homepage = "https://hydroroll.team/" -repository = "https://github.com/HydroRoll-Team/{project}" -authors = ["yourname"] +documentation = "https://dropin.hydroroll.team/" +homepage = "https://dropin.hydroroll.team/" +repository = "https://github.com/HsiangNianian/DropIn" +authors = ["HsiangNianian"] -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "_core" crate-type = ["cdylib"] diff --git a/pyproject.toml b/pyproject.toml index 6081a51..46220e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,10 +3,10 @@ requires = ["maturin>=1.4,<2.0"] build-backend = "maturin" [project] -name = "pyo3_template" +name = "dropin" dynamic = ["version"] -description = "HydroRoll Pyo3 Project Template" -authors = [{ name = "yourname", email = "you@hydroroll.team" }] +description = "Minecraft Instances Manager" +authors = [{ name = "HsiangNianian", email = "i@jyunko.cn" }] dependencies = [] requires-python = ">=3.9" readme.content-type = "text/x-rst" @@ -27,17 +27,17 @@ classifiers = [ [project.urls] homepage = "https://hydroroll.team/" -repository = "https://github.com/HydroRoll-Team/{project}" -documentation = "https://{project}.hydroroll.team/" +repository = "https://github.com/HsiangNianian/DropIn" +documentation = "https://dropin.hydroroll.team/" [project.scripts] -pyo3_template = "pyo3_template.__main__:main" -pyo3t = "pyo3_template.__main__:main" +dropin = "dropin.__main__:main" +di = "dropin.__main__:main" [tool.maturin] features = ["pyo3/extension-module"] -module-name = "pyo3_template._core" -python-package = "pyo3_template" +module-name = "dropin._core" +python-package = "dropin" python-source = "src" [tool.ruff] diff --git a/src/pyo3_template/__init__.py b/src/dropin/__init__.py index e69de29..e69de29 100644 --- a/src/pyo3_template/__init__.py +++ b/src/dropin/__init__.py diff --git a/src/pyo3_template/__main__.py b/src/dropin/__main__.py index 0135c6d..0135c6d 100644 --- a/src/pyo3_template/__main__.py +++ b/src/dropin/__main__.py diff --git a/src/pyo3_template/_core.pyi b/src/dropin/_core.pyi index 4945a82..4945a82 100644 --- a/src/pyo3_template/_core.pyi +++ b/src/dropin/_core.pyi |