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

32 lines
604 B
Diff
Raw Normal View History

2022-10-14 17:42:07 +08:00
From 442decd2a4c9b754e8c674044b85016d4fa99a7d Mon Sep 17 00:00:00 2001
From: Gzx1999 <guozhengxin@kylinos.cn>
Date: Sat, 24 Sep 2022 19:45:06 +0800
Subject: [PATCH] add setup.py
---
setup.py | 6 ++++++
1 file changed, 6 insertions(+)
create mode 100644 setup.py
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..bac24a4
--- /dev/null
+++ b/setup.py
2023-02-27 16:44:25 +08:00
@@ -0,0 +1,12 @@
2022-10-14 17:42:07 +08:00
+#!/usr/bin/env python
+
2023-02-27 16:44:25 +08:00
+from setuptools import setup
2022-10-14 17:42:07 +08:00
+
2023-02-27 16:44:25 +08:00
+entry_points = \
+{'console_scripts': ['blurb = blurb:main']}
+
+setup(
+ name='blurb',
+ version='1.1.0',
+ py_modules=['blurb'],
+ )
2022-10-14 17:42:07 +08:00
--
2.25.1