python-twine/0001-add-setup.py.patch
2022-11-22 11:06:36 +08:00

29 lines
556 B
Diff

From 32bda93b8b0a127a4fc91b74e9de6767d05b757c Mon Sep 17 00:00:00 2001
From: jxy_git <jiangxinyu@kylinos.cn>
Date: Tue, 22 Nov 2022 11:06:00 +0800
Subject: [PATCH] add setup.py
---
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..870a1c3
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+
+from setuptools import setup
+
+if __name__ == "__main__":
+ setup(
+ name = "twine",
+ version = "4.0.1",
+)
--
2.38.1