-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #17 from ccaprani/dsdfix
Fixed DSD scaling for small nodal displacements
- Loading branch information
Showing
7 changed files
with
73 additions
and
74 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,65 @@ | ||
[build-system] | ||
requires = ["setuptools >= 64.0", | ||
"oldest-supported-numpy"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "ospgrid" | ||
dynamic = ["version"] | ||
description = "2D grid analysis wrapper for OpenSeesPy" | ||
license = {text = "GNU General Public License v3.0"} | ||
keywords = ["grid","finite element","bridge"] | ||
authors = [{name = "Colin Caprani", email = "[email protected]"}] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Topic :: Scientific/Engineering", | ||
"Environment :: Console", | ||
"Intended Audience :: Science/Research", | ||
"Programming Language :: Python :: 3 :: Only", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Natural Language :: English", | ||
"Operating System :: POSIX :: Linux", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
] | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
"matplotlib", | ||
"numpy", | ||
"openseespy>=3.3", | ||
"opsvis>=1.0.12", | ||
] | ||
|
||
[build-system] | ||
requires = ["wheel >= 0.31.0", | ||
"setuptools >= 48", | ||
"twine>= 1.11.0", | ||
"oldest-supported-numpy", | ||
] | ||
build-backend = "setuptools.build_meta" | ||
[project.readme] | ||
file = "README.md" | ||
content-type = "text/markdown" | ||
|
||
[project.urls] | ||
Homepage = "https://ccaprani.github.io/ospgrid/" | ||
Documentation = "https://ccaprani.github.io/ospgrid/" | ||
Source = "https://github.com/ccaprani/ospgrid/" | ||
Tracker = "https://github.com/ccaprani/ospgrid/issues/" | ||
|
||
[project.optional-dependencies] | ||
test = ["pytest >= 6.2.2"] | ||
|
||
[tool.setuptools] | ||
platforms = ["any"] | ||
include-package-data = true | ||
license-files = ["LICENSE"] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "ospgrid.__version__"} | ||
|
||
[tool.distutils.bdist_wheel] | ||
universal = 1 | ||
|
||
[tool.aliases] | ||
test = "pytest" | ||
|
||
[tool.pytest.ini_options] | ||
minversion = "6.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
""" | ||
ospgrid - A plane grid elastic analysis wrapper for OpenSeesPy | ||
""" | ||
|
||
__version__ = "0.5.2" | ||
|
||
from .grid import * | ||
from .utils import * | ||
from .post import * |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.