-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
94 lines (83 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
94 lines (83 loc) · 2.21 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
90
91
92
93
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PyMeshGen"
description = "Python-based unstructured mesh generator for CFD/FEA preprocessing and algorithm research"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8"
license = "GPL-2.0-or-later"
authors = [
{ name = "cfd_dev", email = "cfd_dev@126.com" }
]
keywords = ["mesh", "mesh-generation", "cfd", "fea", "delaunay", "advancing-front"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["dependencies", "version"]
[project.urls]
Homepage = "https://github.com/cfd-dev/PyMeshGen"
Repository = "https://github.com/cfd-dev/PyMeshGen"
Issues = "https://github.com/cfd-dev/PyMeshGen/issues"
[project.optional-dependencies]
occ = [
"pythonocc-core>=7.7.0",
]
ml = [
"torch>=2.0.0",
"torch-geometric>=2.3.0",
"gym>=0.21.0",
"stable-baselines3>=2.0.0",
"trimesh>=4.0.0",
]
full = [
"pythonocc-core>=7.7.0",
"torch>=2.0.0",
"torch-geometric>=2.3.0",
"gym>=0.21.0",
"stable-baselines3>=2.0.0",
"trimesh>=4.0.0",
]
[project.scripts]
pymeshgen = "PyMeshGen:PyMeshGen"
pymeshgen-mixed = "PyMeshGen:PyMeshGen_mixed"
[project.gui-scripts]
pymeshgen-gui = "start_gui:main"
[tool.setuptools]
py-modules = ["PyMeshGen", "core", "start_gui"]
include-package-data = true
[tool.setuptools.packages.find]
include = [
"adfront2*",
"data_structure*",
"delaunay*",
"fileIO*",
"gui*",
"meshsize*",
"optimize*",
"utils*",
"visualization*",
]
exclude = [
"unittests*",
"backup*",
"build*",
"dist*",
"examples*",
"temp_docs*",
]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
version = { file = ["VERSION"] }
[tool.setuptools.package-data]
"*" = ["*.txt", "*.md", "*.json", "*.cas"]
[tool.setuptools.exclude-package-data]
"*" = ["__pycache__/*", "*.pyc", "*.pyo"]