midas-civil 0.2.2__tar.gz → 0.2.4__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 midas-civil might be problematic. Click here for more details.
- {midas_civil-0.2.2 → midas_civil-0.2.4}/PKG-INFO +7 -1
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_group.py +2 -1
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil.egg-info/PKG-INFO +7 -1
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil.egg-info/SOURCES.txt +1 -0
- midas_civil-0.2.4/setup.cfg +7 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/setup.py +6 -2
- midas_civil-0.2.2/setup.cfg +0 -4
- {midas_civil-0.2.2 → midas_civil-0.2.4}/LICENSE +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/README.md +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/__init__.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_boundary.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_construction.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_construction_backup.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_element.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_load.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_mapi.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_material.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_model.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_movingload.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_node.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_result copy.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_result.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_result_extract.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_section.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_settlement.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_temperature.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_tendon.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_thickness.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_utils.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil/_view.py +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil.egg-info/dependency_links.txt +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil.egg-info/requires.txt +0 -0
- {midas_civil-0.2.2 → midas_civil-0.2.4}/midas_civil.egg-info/top_level.txt +0 -0
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: midas_civil
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Python library for MIDAS Civil NX
|
|
5
|
+
Home-page: https://github.com/MIDASIT-Co-Ltd/midas-civil-python
|
|
5
6
|
Author: Sumit Shekhar
|
|
6
7
|
Author-email: sumit.midasit@gmail.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: midas,civil,civil nx,bridge
|
|
7
10
|
Description-Content-Type: text/markdown
|
|
8
11
|
License-File: LICENSE
|
|
9
12
|
Requires-Dist: numpy
|
|
@@ -14,6 +17,9 @@ Dynamic: author
|
|
|
14
17
|
Dynamic: author-email
|
|
15
18
|
Dynamic: description
|
|
16
19
|
Dynamic: description-content-type
|
|
20
|
+
Dynamic: home-page
|
|
21
|
+
Dynamic: keywords
|
|
22
|
+
Dynamic: license
|
|
17
23
|
Dynamic: license-file
|
|
18
24
|
Dynamic: requires-dist
|
|
19
25
|
Dynamic: summary
|
|
@@ -44,7 +44,8 @@ def _add_node_2_stGroup(nodeID,groupName):
|
|
|
44
44
|
if groupName in Group.Structure._names:
|
|
45
45
|
for i in Group.Structure.Groups:
|
|
46
46
|
if i.NAME == groupName:
|
|
47
|
-
|
|
47
|
+
if nodeID not in i.NLIST:
|
|
48
|
+
i.NLIST = list(i.NLIST + [nodeID])
|
|
48
49
|
else:
|
|
49
50
|
Group.Structure(groupName)
|
|
50
51
|
_add_node_2_stGroup(nodeID,groupName)
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: midas_civil
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: Python library for MIDAS Civil NX
|
|
5
|
+
Home-page: https://github.com/MIDASIT-Co-Ltd/midas-civil-python
|
|
5
6
|
Author: Sumit Shekhar
|
|
6
7
|
Author-email: sumit.midasit@gmail.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Keywords: midas,civil,civil nx,bridge
|
|
7
10
|
Description-Content-Type: text/markdown
|
|
8
11
|
License-File: LICENSE
|
|
9
12
|
Requires-Dist: numpy
|
|
@@ -14,6 +17,9 @@ Dynamic: author
|
|
|
14
17
|
Dynamic: author-email
|
|
15
18
|
Dynamic: description
|
|
16
19
|
Dynamic: description-content-type
|
|
20
|
+
Dynamic: home-page
|
|
21
|
+
Dynamic: keywords
|
|
22
|
+
Dynamic: license
|
|
17
23
|
Dynamic: license-file
|
|
18
24
|
Dynamic: requires-dist
|
|
19
25
|
Dynamic: summary
|
|
@@ -5,7 +5,7 @@ with open('README.md','r') as f:
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
setup(name='midas_civil',
|
|
8
|
-
version='0.2.
|
|
8
|
+
version='0.2.4',
|
|
9
9
|
description='Python library for MIDAS Civil NX',
|
|
10
10
|
author='Sumit Shekhar',
|
|
11
11
|
author_email='sumit.midasit@gmail.com',
|
|
@@ -17,5 +17,9 @@ setup(name='midas_civil',
|
|
|
17
17
|
'requests'
|
|
18
18
|
],
|
|
19
19
|
long_description= description,
|
|
20
|
-
long_description_content_type='text/markdown'
|
|
20
|
+
long_description_content_type='text/markdown',
|
|
21
|
+
url='https://github.com/MIDASIT-Co-Ltd/midas-civil-python',
|
|
22
|
+
keywords=['midas','civil','civil nx','bridge'],
|
|
23
|
+
license='MIT',
|
|
24
|
+
|
|
21
25
|
)
|
midas_civil-0.2.2/setup.cfg
DELETED
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|