phg-vis 1.0.7__tar.gz → 1.0.8__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.
- {phg_vis-1.0.7/phg_vis.egg-info → phg_vis-1.0.8}/PKG-INFO +4 -4
- phg_vis-1.0.8/phg/vis/GCU.dll +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8/phg_vis.egg-info}/PKG-INFO +4 -4
- {phg_vis-1.0.7 → phg_vis-1.0.8}/setup.py +4 -4
- phg_vis-1.0.7/phg/vis/GCU.dll +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/LICENSE +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/MANIFEST.in +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/README.md +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg/__init__.py +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg/vis/dragpad.exe +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg/vis/dragpad_config.ini +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg/vis/freeglut.dll +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg/vis/imgui/main.lua +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg/vis/lua.dll +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg/vis/pycoder.exe +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg/vis/script.phg +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg/vis/sqlite3.dll +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg/vis/vis.exe +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg/vis/vis.ini +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg/vis/zlib1.dll +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg/visphg.py +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg_vis.egg-info/SOURCES.txt +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg_vis.egg-info/dependency_links.txt +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/phg_vis.egg-info/top_level.txt +0 -0
- {phg_vis-1.0.7 → phg_vis-1.0.8}/setup.cfg +0 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: phg_vis
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary: A package for
|
|
5
|
-
Home-page: https://github.com/panguojun/
|
|
3
|
+
Version: 1.0.8
|
|
4
|
+
Summary: A package for the PHG modeling language and 3D visualization tool.
|
|
5
|
+
Home-page: https://github.com/panguojun/Coordinate-System
|
|
6
6
|
Author: romeosoft
|
|
7
7
|
Author-email: 18858146@qq.com
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
|
-
Requires-Python: >=3.
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
|
|
Binary file
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: phg_vis
|
|
3
|
-
Version: 1.0.
|
|
4
|
-
Summary: A package for
|
|
5
|
-
Home-page: https://github.com/panguojun/
|
|
3
|
+
Version: 1.0.8
|
|
4
|
+
Summary: A package for the PHG modeling language and 3D visualization tool.
|
|
5
|
+
Home-page: https://github.com/panguojun/Coordinate-System
|
|
6
6
|
Author: romeosoft
|
|
7
7
|
Author-email: 18858146@qq.com
|
|
8
8
|
Classifier: Programming Language :: Python :: 3
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
|
11
|
-
Requires-Python: >=3.
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
12
|
Description-Content-Type: text/markdown
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
|
|
@@ -2,21 +2,21 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='phg_vis',
|
|
5
|
-
version='1.0.
|
|
5
|
+
version='1.0.8',
|
|
6
6
|
packages=find_packages(),
|
|
7
7
|
include_package_data=True,
|
|
8
|
-
description='A package for
|
|
8
|
+
description='A package for the PHG modeling language and 3D visualization tool.',
|
|
9
9
|
long_description=open('README.md').read(),
|
|
10
10
|
long_description_content_type='text/markdown',
|
|
11
11
|
author='romeosoft',
|
|
12
12
|
author_email='18858146@qq.com',
|
|
13
|
-
url='https://github.com/panguojun/
|
|
13
|
+
url='https://github.com/panguojun/Coordinate-System',
|
|
14
14
|
classifiers=[
|
|
15
15
|
'Programming Language :: Python :: 3',
|
|
16
16
|
'License :: OSI Approved :: MIT License',
|
|
17
17
|
'Operating System :: OS Independent',
|
|
18
18
|
],
|
|
19
|
-
python_requires='>=3.
|
|
19
|
+
python_requires='>=3.8',
|
|
20
20
|
install_requires=[],
|
|
21
21
|
package_data={
|
|
22
22
|
'phg': ['phg.pyd'],
|
phg_vis-1.0.7/phg/vis/GCU.dll
DELETED
|
Binary file
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|