lzytools 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- lzytools-0.0.1/PKG-INFO +14 -0
- lzytools-0.0.1/README.md +1 -0
- lzytools-0.0.1/lzytools.egg-info/PKG-INFO +14 -0
- lzytools-0.0.1/lzytools.egg-info/SOURCES.txt +6 -0
- lzytools-0.0.1/lzytools.egg-info/dependency_links.txt +1 -0
- lzytools-0.0.1/lzytools.egg-info/top_level.txt +1 -0
- lzytools-0.0.1/setup.cfg +4 -0
- lzytools-0.0.1/setup.py +21 -0
lzytools-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: lzytools
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: 描述
|
|
5
|
+
Home-page: https://github.com/PPJUST/lzytools
|
|
6
|
+
Author: 作者
|
|
7
|
+
Author-email: tagnaign2145u12985h@faktauigniag.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.11
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
描述
|
lzytools-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# pptools
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: lzytools
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: 描述
|
|
5
|
+
Home-page: https://github.com/PPJUST/lzytools
|
|
6
|
+
Author: 作者
|
|
7
|
+
Author-email: tagnaign2145u12985h@faktauigniag.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.11
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
描述
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
lzytools-0.0.1/setup.cfg
ADDED
lzytools-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import setuptools
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
setuptools.setup(
|
|
6
|
+
name="lzytools", # Replace with your own username #自定义封装模块名与文件夹名相同
|
|
7
|
+
version="0.0.1", #版本号,下次修改后再提交的话只需要修改当前的版本号就可以了
|
|
8
|
+
author="作者", #作者
|
|
9
|
+
author_email="tagnaign2145u12985h@faktauigniag.com", #邮箱
|
|
10
|
+
description="描述", #描述
|
|
11
|
+
long_description='描述', #描述
|
|
12
|
+
long_description_content_type="text/markdown", #markdown
|
|
13
|
+
url="https://github.com/PPJUST/lzytools", #github地址
|
|
14
|
+
packages=setuptools.find_packages(),
|
|
15
|
+
classifiers=[
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"License :: OSI Approved :: MIT License", #License
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
],
|
|
20
|
+
python_requires='>=3.11', #支持python版本
|
|
21
|
+
)
|