-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c0b8ead
commit f1b1838
Showing
3 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
import gmsh | ||
import pyvista as pv | ||
from pvgmsh._version import __version__ # noqa: F401 | ||
|
||
|
||
def generate_mesh(surf): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
"""Version info for fe2pv. | ||
On the ``main`` branch, use 'dev0' to denote a development version. | ||
For example: | ||
version_info = 0, 1, 'dev0' | ||
--- | ||
When generating pre-release wheels, use '0rcN', for example: | ||
version_info = 0, 2, '0rc1' | ||
Denotes the first release candidate. | ||
""" | ||
# major, minor, patch | ||
version_info = 0, 0, "dev0" | ||
|
||
# Nice string for the version | ||
__version__ = ".".join(map(str, version_info)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[build-system] | ||
requires = [ | ||
'gmsh', | ||
'meshio', | ||
'pyvista', | ||
'setuptools', | ||
] | ||
build-backend = 'setuptools.build_meta' | ||
|
||
[project] | ||
name = "pyvista-gmsh" | ||
dynamic = ['version'] | ||
dependencies = [ | ||
'gmsh', | ||
'meshio', | ||
'pyvista', | ||
] | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = 'pvgmsh.__version__'} |