Skip to content

Commit

Permalink
update to v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
yexiang1992 committed May 7, 2023
1 parent bcecb63 commit abe437c
Show file tree
Hide file tree
Showing 10 changed files with 31 additions and 23 deletions.
Binary file added dist/opstool-0.8.0-py3-none-any.whl
Binary file not shown.
Binary file added dist/opstool-0.8.0.tar.gz
Binary file not shown.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions doc/source/CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Changelog
=============

v0.8.0
--------------------

v0.7.3
--------------------
- Added the quick visualization functions :py:func:`opstool.vis.plot_model` and :py:func:`opstool.vis.plot_eigen`
Expand Down
7 changes: 6 additions & 1 deletion doc/source/src/notebooks/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
opstool_output/

.ipynb_checkpoints/
.ipynb_checkpoints/

.virtual_documents/

.jupyter/

Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"data":{"layout-restorer:data":{"main":{"dock":{"type":"tab-area","currentIndex":2,"widgets":["notebook:model2d.ipynb","notebook:demos_localaxis_load.ipynb","notebook:demos_ele_removal.ipynb"]},"current":"notebook:demos_ele_removal.ipynb"},"down":{"size":0,"widgets":[]},"left":{"collapsed":false,"current":"filebrowser","widgets":["filebrowser","running-sessions","@jupyterlab/toc:plugin","extensionmanager.main-view"]},"right":{"collapsed":false,"current":"jp-property-inspector","widgets":["jp-property-inspector","debugger-sidebar"]},"relativeSizes":[0.19544487173605288,0.6516161410766379,0.15293898718730933]},"notebook:model2d.ipynb":{"data":{"path":"model2d.ipynb","factory":"Notebook"}},"notebook:demos_localaxis_load.ipynb":{"data":{"path":"demos_localaxis_load.ipynb","factory":"Notebook"}},"notebook:demos_ele_removal.ipynb":{"data":{"path":"demos_ele_removal.ipynb","factory":"Notebook"}}},"metadata":{"id":"default"}}
{"data":{"layout-restorer:data":{"main":{"dock":{"type":"tab-area","currentIndex":3,"widgets":["notebook:model2d.ipynb","notebook:demos_localaxis_load.ipynb","notebook:demos_ele_removal.ipynb","setting-editor:setting-editor"]},"current":"setting-editor:setting-editor"},"down":{"size":0,"widgets":[]},"left":{"collapsed":false,"current":"filebrowser","widgets":["filebrowser","running-sessions","@jupyterlab/toc:plugin","extensionmanager.main-view"]},"right":{"collapsed":false,"current":"jp-property-inspector","widgets":["jp-property-inspector","debugger-sidebar"]},"relativeSizes":[0.19544487173605288,0.6516161410766379,0.15293898718730933]},"notebook:model2d.ipynb":{"data":{"path":"model2d.ipynb","factory":"Notebook"}},"notebook:demos_localaxis_load.ipynb":{"data":{"path":"demos_localaxis_load.ipynb","factory":"Notebook"}},"notebook:demos_ele_removal.ipynb":{"data":{"path":"demos_ele_removal.ipynb","factory":"Notebook"}},"setting-editor:setting-editor":{"data":{}}},"metadata":{"id":"default"}}
40 changes: 20 additions & 20 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,33 @@
long_description = fh.read()

setup(
name='opstool',
name="opstool",
version=__version__,
description='openseespy toolbox',
description="openseespy toolbox",
long_description=long_description,
long_description_content_type="text/markdown",
author='Yexiang Yan',
author_email='[email protected]',
url='https://github.com/yexiang1992',
license='GPL Licence',
keywords='OpenSees Visualization Seismic Simulation',
platforms='any',
python_requires='>=3.8.*',
package_dir={'': 'src'},
packages=find_packages('src'),
author="Yexiang Yan",
author_email="[email protected]",
url="https://github.com/yexiang1992",
license="GPL Licence",
keywords="OpenSees Visualization Seismic Simulation",
platforms="any",
python_requires=">=3.8",
package_dir={"": "src"},
packages=find_packages("src"),
classifiers=[
"Programming Language :: Python :: 3",
],
install_requires=[
'matplotlib',
'numpy',
'openseespy>=3.4.0.1',
'plotly',
'pyvista>=0.38.2',
'sectionproperties>=2.1.5',
'shapely>=2.0.0',
'h5py',
'rich',
"matplotlib",
"numpy",
"openseespy>=3.4.0.1",
"plotly",
"pyvista>=0.38.2",
"sectionproperties>=2.1.5",
"shapely>=2.0.0",
"h5py",
"rich",
"triangle",
],
)
2 changes: 1 addition & 1 deletion src/opstool/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.3"
__version__ = "0.8.0"
Binary file modified src/opstool/__pycache__/__about__.cpython-39.pyc
Binary file not shown.

0 comments on commit abe437c

Please sign in to comment.