python-pytest-asyncio/0001-add-setup-file.patch

24 lines
483 B
Diff
Raw Normal View History

2022-08-02 14:07:54 +08:00
From b276dd6e1666229731318520902377eecefa07d7 Mon Sep 17 00:00:00 2001
From: liqiuyu123 <liqiuyu@kylinos.cn>
Date: Thu, 15 Sep 2022 10:23:38 +0800
Subject: [PATCH] add setup file
---
setup.py | 4 ++++
1 file changed, 4 insertions(+)
create mode 100644 setup.py
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..7f1a176
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,4 @@
+from setuptools import setup
+
+if __name__ == "__main__":
+ setup()
--
2.37.1.windows.1