32 lines
661 B
Diff
32 lines
661 B
Diff
From bfed6fe2faa3df27b50c0b8efe9a3274207c82ad Mon Sep 17 00:00:00 2001
|
|
From: starlet-dx <15929766099@163.com>
|
|
Date: Tue, 28 Feb 2023 10:54:01 +0800
|
|
Subject: [PATCH 1/1] add setup file
|
|
|
|
---
|
|
setup.py | 12 ++++++++++++
|
|
1 file changed, 12 insertions(+)
|
|
create mode 100644 setup.py
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
new file mode 100644
|
|
index 0000000..f2daeed
|
|
--- /dev/null
|
|
+++ b/setup.py
|
|
@@ -0,0 +1,12 @@
|
|
+#!/usr/bin/env python
|
|
+
|
|
+from setuptools import setup
|
|
+
|
|
+entry_points = \
|
|
+ {'console_scripts': ['jaraco.classes = jaraco.classes:main']}
|
|
+
|
|
+setup(
|
|
+ name='jaraco.classes',
|
|
+ version='3.2.3',
|
|
+ py_modules=['jaraco.classes'],
|
|
+)
|
|
--
|
|
2.30.0
|
|
|