aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/maturin_template
diff options
context:
space:
mode:
authorHsiangNianian <i@jyunko.cn>2025-11-06 11:26:52 +0800
committerHsiangNianian <i@jyunko.cn>2025-11-06 11:26:52 +0800
commit4f7762c1bb7ce719c72c466cebdb00d5def8ea5e (patch)
tree38fb539574f0c55e19dc5111b8680048961b0b80 /maturin_template
parent3d4081897e267c7fae5f11a7dd55826574e6941b (diff)
downloadmvp-4f7762c1bb7ce719c72c466cebdb00d5def8ea5e.tar.gz
mvp-4f7762c1bb7ce719c72c466cebdb00d5def8ea5e.zip
refactor: refactor project structure and update configurations for MVP implementation
Diffstat (limited to 'maturin_template')
-rw-r--r--maturin_template/__init__.py0
-rw-r--r--maturin_template/__main__.py18
2 files changed, 0 insertions, 18 deletions
diff --git a/maturin_template/__init__.py b/maturin_template/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/maturin_template/__init__.py
+++ /dev/null
diff --git a/maturin_template/__main__.py b/maturin_template/__main__.py
deleted file mode 100644
index 02df57d..0000000
--- a/maturin_template/__main__.py
+++ /dev/null
@@ -1,18 +0,0 @@
-import subprocess
-import sys
-
-def run_cli(*args):
- result = subprocess.run(
- ["maturin_template", *args],
- capture_output=True,
- text=True
- )
- return result.stdout
-
-def main():
- args = sys.argv[1:]
- print(run_cli(*args))
- return 0
-
-if __name__ == "__main__":
- sys.exit(main()) \ No newline at end of file