qtmodel 1.1.2__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.
- {qtmodel-1.1.2 → qtmodel-1.1.3}/PKG-INFO +3 -3
- {qtmodel-1.1.2 → qtmodel-1.1.3}/qtmodel.egg-info/PKG-INFO +3 -3
- qtmodel-1.1.3/qtmodel.egg-info/SOURCES.txt +5 -0
- qtmodel-1.1.3/qtmodel.egg-info/top_level.txt +1 -0
- {qtmodel-1.1.2 → qtmodel-1.1.3}/setup.py +4 -3
- qtmodel-1.1.2/README.md +0 -1443
- qtmodel-1.1.2/qtmodel/__init__.py +0 -2
- qtmodel-1.1.2/qtmodel/core/__init__.py +0 -3
- qtmodel-1.1.2/qtmodel/core/model_db.py +0 -930
- qtmodel-1.1.2/qtmodel/core/qt_server.py +0 -52
- qtmodel-1.1.2/qtmodel/core/result_db.py +0 -658
- qtmodel-1.1.2/qtmodel/mdb/__init__.py +0 -23
- qtmodel-1.1.2/qtmodel/mdb/data_helper.py +0 -327
- qtmodel-1.1.2/qtmodel/mdb/mdb_analysis_setting.py +0 -328
- qtmodel-1.1.2/qtmodel/mdb/mdb_boundary.py +0 -389
- qtmodel-1.1.2/qtmodel/mdb/mdb_construction_stage.py +0 -265
- qtmodel-1.1.2/qtmodel/mdb/mdb_dynamic_load.py +0 -327
- qtmodel-1.1.2/qtmodel/mdb/mdb_live_load.py +0 -293
- qtmodel-1.1.2/qtmodel/mdb/mdb_project.py +0 -258
- qtmodel-1.1.2/qtmodel/mdb/mdb_property.py +0 -219
- qtmodel-1.1.2/qtmodel/mdb/mdb_section.py +0 -292
- qtmodel-1.1.2/qtmodel/mdb/mdb_static_load.py +0 -267
- qtmodel-1.1.2/qtmodel/mdb/mdb_structure.py +0 -275
- qtmodel-1.1.2/qtmodel/mdb/mdb_temperature_load.py +0 -269
- qtmodel-1.1.2/qtmodel/mdb/mdb_tendon.py +0 -197
- qtmodel-1.1.2/qtmodel/odb/__init__.py +0 -12
- qtmodel-1.1.2/qtmodel/odb/odb_model.py +0 -30
- qtmodel-1.1.2/qtmodel/odb/odb_result.py +0 -4
- qtmodel-1.1.2/qtmodel/odb/odb_result_plot.py +0 -4
- qtmodel-1.1.2/qtmodel/odb/odb_view.py +0 -20
- qtmodel-1.1.2/qtmodel.egg-info/SOURCES.txt +0 -30
- qtmodel-1.1.2/qtmodel.egg-info/top_level.txt +0 -1
- {qtmodel-1.1.2 → qtmodel-1.1.3}/qtmodel.egg-info/dependency_links.txt +0 -0
- {qtmodel-1.1.2 → 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.
|
|
4
|
-
Summary: python modeling for qt 2025-09-
|
|
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
|
|
@@ -633,7 +633,7 @@ Returns: 无
|
|
|
633
633
|
```Python
|
|
634
634
|
# 示例代码
|
|
635
635
|
from qtmodel import *
|
|
636
|
-
mdb.add_tendon_elements(
|
|
636
|
+
mdb.add_tendon_elements(ids=[1,2,4,6])
|
|
637
637
|
```
|
|
638
638
|
Returns: 无
|
|
639
639
|
## 静力荷载操作
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: qtmodel
|
|
3
|
-
Version: 1.1.
|
|
4
|
-
Summary: python modeling for qt 2025-09-
|
|
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
|
|
@@ -633,7 +633,7 @@ Returns: 无
|
|
|
633
633
|
```Python
|
|
634
634
|
# 示例代码
|
|
635
635
|
from qtmodel import *
|
|
636
|
-
mdb.add_tendon_elements(
|
|
636
|
+
mdb.add_tendon_elements(ids=[1,2,4,6])
|
|
637
637
|
```
|
|
638
638
|
Returns: 无
|
|
639
639
|
## 静力荷载操作
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -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.
|
|
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()} ",
|