aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/maturin_template
diff options
context:
space:
mode:
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