-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
89 lines (79 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
89 lines (79 loc) · 1.91 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "geoai-simkit"
dynamic = ["version", "readme"]
description = "Geotechnical simulation starter toolkit with staged workflows, FEM solvers, and desktop visualization"
requires-python = ">=3.10"
keywords = ["geotechnical", "fem", "simulation", "vtk", "pyvista", "geomechanics"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.26",
"typing-extensions>=4.9",
"scipy>=1.11",
]
[project.optional-dependencies]
gui = [
"pyvista>=0.47",
"PySide6>=6.7",
"pyvistaqt>=0.11",
]
ifc = [
"ifcopenshell>=0.8.4",
]
meshing = [
"meshio>=5.3",
"gmsh>=4.11",
]
gpu = [
"warp-lang>=1.12",
]
all = [
"pyvista>=0.47",
"PySide6>=6.7",
"pyvistaqt>=0.11",
"ifcopenshell>=0.8.4",
"meshio>=5.3",
"gmsh>=4.11",
"warp-lang>=1.12",
]
dev = [
"pytest>=8.0",
"ruff>=0.5",
"build>=1.2",
"twine>=5.1",
]
[project.scripts]
geoai-simkit = "geoai_simkit.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools.package-data]
geoai_simkit = ["assets/*.ico", "assets/*.png"]
[tool.setuptools.dynamic]
version = {attr = "geoai_simkit._version.__version__"}
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
[tool.ruff]
target-version = "py310"
line-length = 100
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I"]