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.

Files changed (26) hide show
  1. {midas_civil-0.0.2 → midas_civil-0.0.4}/PKG-INFO +6 -1
  2. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_model.py +1 -1
  3. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil.egg-info/PKG-INFO +6 -1
  4. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil.egg-info/SOURCES.txt +1 -0
  5. midas_civil-0.0.4/midas_civil.egg-info/requires.txt +4 -0
  6. midas_civil-0.0.4/setup.py +21 -0
  7. midas_civil-0.0.2/setup.py +0 -15
  8. {midas_civil-0.0.2 → midas_civil-0.0.4}/LICENSE +0 -0
  9. {midas_civil-0.0.2 → midas_civil-0.0.4}/README.md +0 -0
  10. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/__init__.py +0 -0
  11. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_boundary.py +0 -0
  12. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_construction.py +0 -0
  13. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_element.py +0 -0
  14. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_group.py +0 -0
  15. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_load.py +0 -0
  16. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_mapi.py +0 -0
  17. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_material.py +0 -0
  18. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_node.py +0 -0
  19. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_result.py +0 -0
  20. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_result_extract.py +0 -0
  21. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_section.py +0 -0
  22. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_thickness.py +0 -0
  23. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil/_utils.py +0 -0
  24. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil.egg-info/dependency_links.txt +0 -0
  25. {midas_civil-0.0.2 → midas_civil-0.0.4}/midas_civil.egg-info/top_level.txt +0 -0
  26. {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.2
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/SAVE",{"Argument":str(location)})
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.2
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
@@ -19,4 +19,5 @@ midas_civil/_utils.py
19
19
  midas_civil.egg-info/PKG-INFO
20
20
  midas_civil.egg-info/SOURCES.txt
21
21
  midas_civil.egg-info/dependency_links.txt
22
+ midas_civil.egg-info/requires.txt
22
23
  midas_civil.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ numpy
2
+ polars
3
+ xlsxwriter
4
+ requests
@@ -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
+ )
@@ -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