qtmodel 1.1.1__tar.gz → 1.1.3__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.

Potentially problematic release.


This version of qtmodel might be problematic. Click here for more details.

Files changed (34) hide show
  1. {qtmodel-1.1.1 → qtmodel-1.1.3}/PKG-INFO +3 -3
  2. {qtmodel-1.1.1 → qtmodel-1.1.3}/qtmodel.egg-info/PKG-INFO +3 -3
  3. qtmodel-1.1.3/qtmodel.egg-info/SOURCES.txt +5 -0
  4. qtmodel-1.1.3/qtmodel.egg-info/top_level.txt +1 -0
  5. {qtmodel-1.1.1 → qtmodel-1.1.3}/setup.py +4 -3
  6. qtmodel-1.1.1/README.md +0 -1443
  7. qtmodel-1.1.1/qtmodel/__init__.py +0 -2
  8. qtmodel-1.1.1/qtmodel/core/__init__.py +0 -3
  9. qtmodel-1.1.1/qtmodel/core/model_db.py +0 -930
  10. qtmodel-1.1.1/qtmodel/core/qt_server.py +0 -52
  11. qtmodel-1.1.1/qtmodel/core/result_db.py +0 -658
  12. qtmodel-1.1.1/qtmodel/mdb/__init__.py +0 -23
  13. qtmodel-1.1.1/qtmodel/mdb/data_helper.py +0 -326
  14. qtmodel-1.1.1/qtmodel/mdb/mdb_analysis_setting.py +0 -328
  15. qtmodel-1.1.1/qtmodel/mdb/mdb_boundary.py +0 -389
  16. qtmodel-1.1.1/qtmodel/mdb/mdb_construction_stage.py +0 -266
  17. qtmodel-1.1.1/qtmodel/mdb/mdb_dynamic_load.py +0 -327
  18. qtmodel-1.1.1/qtmodel/mdb/mdb_live_load.py +0 -295
  19. qtmodel-1.1.1/qtmodel/mdb/mdb_project.py +0 -258
  20. qtmodel-1.1.1/qtmodel/mdb/mdb_property.py +0 -222
  21. qtmodel-1.1.1/qtmodel/mdb/mdb_section.py +0 -291
  22. qtmodel-1.1.1/qtmodel/mdb/mdb_static_load.py +0 -267
  23. qtmodel-1.1.1/qtmodel/mdb/mdb_structure.py +0 -275
  24. qtmodel-1.1.1/qtmodel/mdb/mdb_temperature_load.py +0 -269
  25. qtmodel-1.1.1/qtmodel/mdb/mdb_tendon.py +0 -197
  26. qtmodel-1.1.1/qtmodel/odb/__init__.py +0 -12
  27. qtmodel-1.1.1/qtmodel/odb/odb_model.py +0 -30
  28. qtmodel-1.1.1/qtmodel/odb/odb_result.py +0 -4
  29. qtmodel-1.1.1/qtmodel/odb/odb_result_plot.py +0 -4
  30. qtmodel-1.1.1/qtmodel/odb/odb_view.py +0 -20
  31. qtmodel-1.1.1/qtmodel.egg-info/SOURCES.txt +0 -30
  32. qtmodel-1.1.1/qtmodel.egg-info/top_level.txt +0 -1
  33. {qtmodel-1.1.1 → qtmodel-1.1.3}/qtmodel.egg-info/dependency_links.txt +0 -0
  34. {qtmodel-1.1.1 → qtmodel-1.1.3}/setup.cfg +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: qtmodel
3
- Version: 1.1.1
4
- Summary: python modeling for qt 2025-09-24
3
+ Version: 1.1.3
4
+ Summary: python modeling for qt 2025-09-26
5
5
  Home-page: https://github.com/Inface0443/pyqt
6
6
  Author: dqy-zhj
7
7
  Author-email: 1105417715@qq.com
@@ -17,7 +17,7 @@ Dynamic: description-content-type
17
17
  Dynamic: home-page
18
18
  Dynamic: summary
19
19
 
20
- > 最新版本 V1.1.0 - 2025-09-24
20
+ > 最新版本 V1.1.2 - 2025-09-24
21
21
  > pip install --upgrade qtmodel -i https://pypi.org/simple
22
22
  - 新增更新结构组接口
23
23
  # 建模操作
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: qtmodel
3
- Version: 1.1.1
4
- Summary: python modeling for qt 2025-09-24
3
+ Version: 1.1.3
4
+ Summary: python modeling for qt 2025-09-26
5
5
  Home-page: https://github.com/Inface0443/pyqt
6
6
  Author: dqy-zhj
7
7
  Author-email: 1105417715@qq.com
@@ -17,7 +17,7 @@ Dynamic: description-content-type
17
17
  Dynamic: home-page
18
18
  Dynamic: summary
19
19
 
20
- > 最新版本 V1.1.0 - 2025-09-24
20
+ > 最新版本 V1.1.2 - 2025-09-24
21
21
  > pip install --upgrade qtmodel -i https://pypi.org/simple
22
22
  - 新增更新结构组接口
23
23
  # 建模操作
@@ -0,0 +1,5 @@
1
+ setup.py
2
+ qtmodel.egg-info/PKG-INFO
3
+ qtmodel.egg-info/SOURCES.txt
4
+ qtmodel.egg-info/dependency_links.txt
5
+ qtmodel.egg-info/top_level.txt
@@ -1,17 +1,18 @@
1
+ # -*- coding: utf-8 -*-
1
2
  from datetime import datetime
2
3
  from setuptools import setup, find_packages
3
4
 
4
5
  # 读取文件内容
5
- with open("README.md", "r", encoding="utf-8") as fh:
6
+ with open("../README.md", "r", encoding="utf-8") as fh:
6
7
  long_description = fh.read()
7
-
8
+ # git config --global --get http.proxy
8
9
  # set http_proxy= && set https_proxy=
9
10
  # python setup.py sdist
10
11
  # twine upload dist/*
11
12
 
12
13
  setup(
13
14
  name="qtmodel",
14
- version=f"V1.1.1",
15
+ version=f"V1.1.3",
15
16
  author="dqy-zhj",
16
17
  author_email="1105417715@qq.com",
17
18
  description=f"python modeling for qt {datetime.now().date()} ",