gl-py2pyd 0.1.0__tar.gz → 0.1.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.
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/PKG-INFO +4 -3
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/gl_py2pyd.egg-info/PKG-INFO +4 -3
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/setup.py +3 -3
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/MANIFEST.in +0 -0
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/README.md +0 -0
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/gl_py2pyd.egg-info/SOURCES.txt +0 -0
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/gl_py2pyd.egg-info/dependency_links.txt +0 -0
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/gl_py2pyd.egg-info/entry_points.txt +0 -0
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/gl_py2pyd.egg-info/requires.txt +0 -0
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/gl_py2pyd.egg-info/top_level.txt +0 -0
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/module/__init__.py +0 -0
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/module/fileConversion.py +0 -0
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/module/single_py2pyd.py +0 -0
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/py2pyd.py +0 -0
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/pyproject.toml +0 -0
- {gl_py2pyd-0.1.0 → gl_py2pyd-0.1.1}/setup.cfg +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gl-py2pyd
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: 将Python文件转换为pyd/so文件的工具
|
|
5
|
-
Home-page: https://github.com/
|
|
5
|
+
Home-page: https://github.com/youjunxiaji/py2pyd-arg
|
|
6
6
|
Author: gu lei
|
|
7
|
-
Author-email:
|
|
7
|
+
Author-email: youjunxiaji@gmail.com
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
@@ -13,6 +13,7 @@ Description-Content-Type: text/markdown
|
|
|
13
13
|
Requires-Dist: cython
|
|
14
14
|
Requires-Dist: loguru
|
|
15
15
|
Dynamic: author
|
|
16
|
+
Dynamic: author-email
|
|
16
17
|
Dynamic: classifier
|
|
17
18
|
Dynamic: description
|
|
18
19
|
Dynamic: description-content-type
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gl-py2pyd
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: 将Python文件转换为pyd/so文件的工具
|
|
5
|
-
Home-page: https://github.com/
|
|
5
|
+
Home-page: https://github.com/youjunxiaji/py2pyd-arg
|
|
6
6
|
Author: gu lei
|
|
7
|
-
Author-email:
|
|
7
|
+
Author-email: youjunxiaji@gmail.com
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
@@ -13,6 +13,7 @@ Description-Content-Type: text/markdown
|
|
|
13
13
|
Requires-Dist: cython
|
|
14
14
|
Requires-Dist: loguru
|
|
15
15
|
Dynamic: author
|
|
16
|
+
Dynamic: author-email
|
|
16
17
|
Dynamic: classifier
|
|
17
18
|
Dynamic: description
|
|
18
19
|
Dynamic: description-content-type
|
|
@@ -5,13 +5,13 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="gl-py2pyd",
|
|
8
|
-
version="0.1.
|
|
8
|
+
version="0.1.1",
|
|
9
9
|
author="gu lei",
|
|
10
|
-
author_email="",
|
|
10
|
+
author_email="youjunxiaji@gmail.com",
|
|
11
11
|
description="将Python文件转换为pyd/so文件的工具",
|
|
12
12
|
long_description=long_description,
|
|
13
13
|
long_description_content_type="text/markdown",
|
|
14
|
-
url="https://github.com/
|
|
14
|
+
url="https://github.com/youjunxiaji/py2pyd-arg",
|
|
15
15
|
packages=["module"],
|
|
16
16
|
include_package_data=True,
|
|
17
17
|
py_modules=["py2pyd"],
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|