midas-civil 0.0.2__tar.gz → 0.0.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.0.2 → midas_civil-0.0.4}/PKG-INFO +6 -1
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_model.py +1 -1
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil.egg-info/PKG-INFO +6 -1
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil.egg-info/SOURCES.txt +1 -0
- midas_civil-0.0.4/midas_civil.egg-info/requires.txt +4 -0
- midas_civil-0.0.4/setup.py +21 -0
- midas_civil-0.0.2/setup.py +0 -15
- {midas_civil-0.0.2 → midas_civil-0.0.4}/LICENSE +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/README.md +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/__init__.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_boundary.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_construction.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_element.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_group.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_load.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_mapi.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_material.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_node.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_result.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_result_extract.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_section.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_thickness.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_utils.py +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil.egg-info/dependency_links.txt +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil.egg-info/top_level.txt +0 -0
- {midas_civil-0.0.2 → midas_civil-0.0.4}/setup.cfg +0 -0
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: midas_civil
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: Python library for MIDAS Civil NX
|
|
5
5
|
Author: Sumit Shekhar
|
|
6
6
|
Author-email: sumit.midasit@gmail.com
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
License-File: LICENSE
|
|
9
|
+
Requires-Dist: numpy
|
|
10
|
+
Requires-Dist: polars
|
|
11
|
+
Requires-Dist: xlsxwriter
|
|
12
|
+
Requires-Dist: requests
|
|
9
13
|
Dynamic: author
|
|
10
14
|
Dynamic: author-email
|
|
11
15
|
Dynamic: description
|
|
12
16
|
Dynamic: description-content-type
|
|
13
17
|
Dynamic: license-file
|
|
18
|
+
Dynamic: requires-dist
|
|
14
19
|
Dynamic: summary
|
|
15
20
|
|
|
16
21
|
# MIDAS CIVIL NX Python
|
|
@@ -308,7 +308,7 @@ class Model:
|
|
|
308
308
|
@staticmethod
|
|
309
309
|
def saveAs(location=""):
|
|
310
310
|
"""Saves the model at location provided"""
|
|
311
|
-
MidasAPI("POST","/doc/
|
|
311
|
+
MidasAPI("POST","/doc/SAVEAS",{"Argument":str(location)})
|
|
312
312
|
|
|
313
313
|
@staticmethod
|
|
314
314
|
def open(location=""):
|
|
@@ -1,16 +1,21 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: midas_civil
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.4
|
|
4
4
|
Summary: Python library for MIDAS Civil NX
|
|
5
5
|
Author: Sumit Shekhar
|
|
6
6
|
Author-email: sumit.midasit@gmail.com
|
|
7
7
|
Description-Content-Type: text/markdown
|
|
8
8
|
License-File: LICENSE
|
|
9
|
+
Requires-Dist: numpy
|
|
10
|
+
Requires-Dist: polars
|
|
11
|
+
Requires-Dist: xlsxwriter
|
|
12
|
+
Requires-Dist: requests
|
|
9
13
|
Dynamic: author
|
|
10
14
|
Dynamic: author-email
|
|
11
15
|
Dynamic: description
|
|
12
16
|
Dynamic: description-content-type
|
|
13
17
|
Dynamic: license-file
|
|
18
|
+
Dynamic: requires-dist
|
|
14
19
|
Dynamic: summary
|
|
15
20
|
|
|
16
21
|
# MIDAS CIVIL NX Python
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
from setuptools import setup,find_packages
|
|
2
|
+
|
|
3
|
+
with open('README.md','r') as f:
|
|
4
|
+
description = f.read()
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
setup(name='midas_civil',
|
|
8
|
+
version='0.0.4',
|
|
9
|
+
description='Python library for MIDAS Civil NX',
|
|
10
|
+
author='Sumit Shekhar',
|
|
11
|
+
author_email='sumit.midasit@gmail.com',
|
|
12
|
+
packages=find_packages(),
|
|
13
|
+
install_requires=[
|
|
14
|
+
'numpy',
|
|
15
|
+
'polars',
|
|
16
|
+
'xlsxwriter',
|
|
17
|
+
'requests'
|
|
18
|
+
],
|
|
19
|
+
long_description= description,
|
|
20
|
+
long_description_content_type='text/markdown'
|
|
21
|
+
)
|
midas_civil-0.0.2/setup.py
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
from setuptools import setup,find_packages
|
|
2
|
-
|
|
3
|
-
with open('README.md','r') as f:
|
|
4
|
-
description = f.read()
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
setup(name='midas_civil',
|
|
8
|
-
version='0.0.2',
|
|
9
|
-
description='Python library for MIDAS Civil NX',
|
|
10
|
-
author='Sumit Shekhar',
|
|
11
|
-
author_email='sumit.midasit@gmail.com',
|
|
12
|
-
packages=find_packages(),
|
|
13
|
-
long_description= description,
|
|
14
|
-
long_description_content_type='text/markdown'
|
|
15
|
-
)
|
|
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
|