-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
32 lines (28 loc) · 1 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "stpyvista"
version = "0.1.4"
authors = [
{ name = "Edwin Saavedra C.", email = "[email protected]" },
]
description = "Streamlit component to render PyVista 3D visualizations"
readme = "PyPI_README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering :: Visualization",
]
keywords = ["pyvista", "3D", "streamlit", "panel", "visualization"]
dependencies = ["streamlit", "pyvista", "bokeh", "panel"]
[project.optional-dependencies]
trame = ["nest_asyncio", "trame", "trame-vuetify", "trame-vtk"]
[project.urls]
"Homepage" = "https://stpyvista.streamlit.app/"
"Source Code" = "https://github.com/edsaac/stpyvista"
"Bug Tracker" = "https://github.com/edsaac/stpyvista/issues"
[tool.hatch.build.targets.sdist]
exclude = ["/test", "/assets"]