29 lines
561 B
Diff
29 lines
561 B
Diff
From d5fb0d492700901a26fe1d9c7421adb8eceeee24 Mon Sep 17 00:00:00 2001
|
|
From: jxy_git <jiangxinyu@kylinos.cn>
|
|
Date: Mon, 20 Mar 2023 17:46:03 +0800
|
|
Subject: [PATCH] Add setup.py file
|
|
|
|
---
|
|
setup.py | 9 +++++++++
|
|
1 file changed, 9 insertions(+)
|
|
create mode 100644 setup.py
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
new file mode 100644
|
|
index 0000000..26251c6
|
|
--- /dev/null
|
|
+++ b/setup.py
|
|
@@ -0,0 +1,9 @@
|
|
+#!/usr/bin/env python
|
|
+
|
|
+from setuptools import setup
|
|
+
|
|
+if __name__ == "__main__":
|
|
+ setup(
|
|
+ name = "argh",
|
|
+ version = "0.28.1",
|
|
+)
|
|
--
|
|
2.33.0
|
|
|