Skip to content

Commit 3534b86

Browse files
committed
initial commit
0 parents  commit 3534b86

File tree

9 files changed

+2838
-0
lines changed

9 files changed

+2838
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Python-generated files
2+
__pycache__/
3+
*.py[oc]
4+
build/
5+
dist/
6+
wheels/
7+
*.egg-info
8+
9+
# Virtual environments
10+
.venv

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.13

README.md

Whitespace-only changes.

colors.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
annotation_text = "black"
2+
annotation_point = "grey"
3+
point_label_text = "green"
4+
spring = "grey"
5+
node = "grey"
6+
member = "black"
7+
deformed_member = "red"
8+
pt_load = "green"
9+
dist_load = "green"
10+
moment_load = "green"
11+
area_load = "green"

pyproject.toml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[project]
2+
name = "pynite-plotly"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
authors = [
7+
{ name = "Connor Ferster", email = "[email protected]" }
8+
]
9+
requires-python = ">=3.10"
10+
dependencies = [
11+
"ipykernel>=6.29.5",
12+
"plotly-3d-primitives>=0.2.1",
13+
]
14+
15+
[build-system]
16+
requires = ["flit_core>=3.2,<4"]
17+
build-backend = "flit_core.buildapi"
18+
19+
[dependency-groups]
20+
dev = [
21+
"ipykernel>=6.29.5",
22+
"nbformat>=5.10.4",
23+
"pandas>=2.2.3",
24+
"pynitefea>=0.0.96",
25+
"scipy>=1.14.1",
26+
]

src/pynite_plotly/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
"""
2+
A 3rd party visualization module for PyNiteFEA using plotly
3+
"""
4+
__version__ = "0.1.0"
5+
6+
from pynite_plotly.rendering import Renderer

src/pynite_plotly/py.typed

Whitespace-only changes.

0 commit comments

Comments
 (0)