python-pep517/0001-add-setup.py.patch

29 lines
557 B
Diff
Raw Normal View History

2022-11-08 15:52:25 +08:00
From 089e8308734b5274f489a0c0162f420a6ce23ddd Mon Sep 17 00:00:00 2001
From: jxy_git <jiangxinyu@kylinos.cn>
Date: Wed, 9 Nov 2022 19:02:47 +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..06f8341
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python
+
+from setuptools import setup
+
+if __name__ == "__main__":
+ setup(
+ name = "pep517",
+ version = "0.13.0",
+)
--
2.37.1