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.
@@ -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
+ # 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,6 @@
1
+ README.md
2
+ setup.py
3
+ lzytools.egg-info/PKG-INFO
4
+ lzytools.egg-info/SOURCES.txt
5
+ lzytools.egg-info/dependency_links.txt
6
+ lzytools.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )