forked from jkneifl/Visualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (37 loc) · 923 Bytes
/
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
33
34
35
36
37
38
39
40
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "visualizer-3d"
version = "0.3.1"
authors = [
{ name="Jonas Kneifl", email="jonas.kneifl@itm.uni-stuttgart.com" },
]
description = "Tool for three-dimensional animations of geometries like FE meshes"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"PyOpenGL>=3.1.6",
# "PyOpenGL-accelerate>=3.1.6",
"PyQt6>=6.3.0",
"pyqtgraph>=0.12.3",
"opencv-python",
"matplotlib",
"Pillow",
"numpy",
]
keywords = [
"visualiztion",
"mesh",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.setuptools]
packages = ["visualizer"]
py-modules = []
[project.urls]
Homepage = "https://github.com/jkneifl/visualizer"
Issues = "https://github.com/jkneifl/visualizer/issues"