Commit 0b4284a7 authored by Yakubov, Sergey's avatar Yakubov, Sergey
Browse files

Merge branch '10-an-app-that-supports-both-pyqt-trame' into 'main'

Resolve "An app that supports both PyQT/Trame"

Closes #10

See merge request !10
parents 9353775b f1097e8a
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
.idea
.pyc
.DS_Store
__pycache__
+2492 −0

File added.

Preview size limit exceeded, changes collapsed.

+33 −0
Original line number Diff line number Diff line
[tool.poetry]
name = "trame-pyqt"
version = "0.1.0"
description = ""
authors = ["Yakubov, Sergey <yakubovs@ornl.gov>"]
packages = [{include = "trame_pyqt"}]

[tool.poetry.dependencies]
python = "^3.10"
trame = "^3.5.1"
trame-vuetify = "^2.4.2"
trame-vtk = "^2.8.0"
numpy = "^1.26.3"
trame-plotly = "^3.0.2"
bioblend = "^1.2.0"
plotly = "^5.18.0"
plotly-resampler = "^0.9.2"
matplotlib = "^3.8.2"
pywebview = "^4.4.1"
vtk-egl = {version="*", markers="sys_platform=='manylinux'"}
pyqt6 = "^6.6.1"

[[tool.poetry.source]]
name = "vtk"
url = "https://wheels.vtk.org"
priority = "primary"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry.scripts]
start = "trame_pyqt.app:main"
+5 −0
Original line number Diff line number Diff line
from .main import main

__all__ = [
    "main",
]
+2 −0
Original line number Diff line number Diff line
from . import main
main()
Loading