cad-to-dagmc 0.5.0__tar.gz → 0.5.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cad-to-dagmc might be problematic. Click here for more details.

Files changed (61) hide show
  1. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/.github/workflows/black.yml +2 -2
  2. cad_to_dagmc-0.5.1/.github/workflows/ci_with_benchmarks.yml +48 -0
  3. cad_to_dagmc-0.5.1/.github/workflows/ci_with_install.yml +63 -0
  4. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/.gitignore +1 -0
  5. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/PKG-INFO +9 -8
  6. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/README.md +8 -7
  7. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/examples/cadquery_compound.py +1 -6
  8. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/examples/cadquery_object_and_stp_file.py +1 -3
  9. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/examples/cadquery_text.py +1 -3
  10. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/examples/create_stp_files_for_examples.py +1 -6
  11. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/examples/single_stp_file_multiple_volumes.py +1 -3
  12. cad_to_dagmc-0.5.1/src/_version.py +16 -0
  13. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/src/cad_to_dagmc/__init__.py +1 -6
  14. cad_to_dagmc-0.5.1/src/cad_to_dagmc/core.py +479 -0
  15. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/src/cad_to_dagmc.egg-info/PKG-INFO +9 -8
  16. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/src/cad_to_dagmc.egg-info/SOURCES.txt +1 -3
  17. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/test_file_creation.py +4 -18
  18. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/test_h5m_in_simulation.py +2 -6
  19. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/test_h5m_in_transport.py +0 -2
  20. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/test_loading_from_file_vs_shape_object.py +6 -5
  21. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/test_match.py +1 -3
  22. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/test_package.py +2 -4
  23. cad_to_dagmc-0.5.0/.github/workflows/ci_with_install.yml +0 -112
  24. cad_to_dagmc-0.5.0/src/_version.py +0 -8
  25. cad_to_dagmc-0.5.0/src/cad_to_dagmc/brep_part_finder.py +0 -36
  26. cad_to_dagmc-0.5.0/src/cad_to_dagmc/brep_to_h5m.py +0 -121
  27. cad_to_dagmc-0.5.0/src/cad_to_dagmc/core.py +0 -171
  28. cad_to_dagmc-0.5.0/src/cad_to_dagmc/vertices_to_h5m.py +0 -262
  29. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/.github/workflows/anaconda-publish.yml +0 -0
  30. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/.github/workflows/python-publish.yml +0 -0
  31. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/LICENSE +0 -0
  32. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/examples/cadquery_assembly.py +0 -0
  33. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/examples/curved_cadquery_object.py +0 -0
  34. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/examples/multiple_cadquery_objects.py +0 -0
  35. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/examples/multiple_stp_files.py +0 -0
  36. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/examples/single_cadquery_object.py +0 -0
  37. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/examples/single_stp_file.py +0 -0
  38. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/pyproject.toml +0 -0
  39. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/setup.cfg +0 -0
  40. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/src/cad_to_dagmc.egg-info/dependency_links.txt +0 -0
  41. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/src/cad_to_dagmc.egg-info/requires.txt +0 -0
  42. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/src/cad_to_dagmc.egg-info/top_level.txt +0 -0
  43. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/ENDFB-7.1-NNDC_H1.h5 +0 -0
  44. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/ball_reactor.brep +0 -0
  45. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/create_brep_file_for_testing.py +0 -0
  46. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/curved_extrude.stp +0 -0
  47. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/extrude_rectangle.step +0 -0
  48. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/extrude_rectangle.stp +0 -0
  49. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/multi_volume_cylinders.stp +0 -0
  50. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/one_cube.brep +0 -0
  51. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/single_cube.step +0 -0
  52. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/single_cube.stp +0 -0
  53. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/single_volume_thin.stp +0 -0
  54. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/single_volume_thin.vtk +0 -0
  55. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/test_brep_file.brep +0 -0
  56. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/test_python_api.py +0 -0
  57. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/test_two_joined_cubes.brep +0 -0
  58. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/test_two_sep_cubes.brep +0 -0
  59. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/test_version.py +0 -0
  60. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/two_connected_cubes.stp +0 -0
  61. {cad_to_dagmc-0.5.0 → cad_to_dagmc-0.5.1}/tests/two_disconnected_cubes.stp +0 -0
@@ -13,7 +13,7 @@ jobs:
13
13
  black:
14
14
  runs-on: ubuntu-latest
15
15
  steps:
16
- - uses: actions/checkout@v2
16
+ - uses: actions/checkout@v3
17
17
  with:
18
18
  ref: ${{ github.head_ref }}
19
19
  - name: Setup Python
@@ -26,7 +26,7 @@ jobs:
26
26
  pip install black
27
27
  - name: Run black
28
28
  run: |
29
- black .
29
+ black --line-length 100 .
30
30
  - uses: stefanzweifel/git-auto-commit-action@v4
31
31
  with:
32
32
  commit_message: "[skip ci] Apply formatting changes"
@@ -0,0 +1,48 @@
1
+
2
+ name: CI with model benchmark zoo
3
+
4
+ on:
5
+ pull_request:
6
+ branches:
7
+ - main
8
+ paths-ignore:
9
+ - 'docs/**'
10
+ - '.gitignore'
11
+ - '*.md'
12
+ - 'CITATION.cff'
13
+ - 'LICENSE.txt'
14
+ - 'readthedocs.yml'
15
+ push:
16
+ branches:
17
+ - main
18
+
19
+ jobs:
20
+ testing:
21
+ runs-on: ubuntu-latest
22
+ steps:
23
+ - name: Checkout repository
24
+ uses: actions/checkout@v4
25
+
26
+ - name: install non pypi dependencies for cad creation
27
+ env:
28
+ OPENMC_CROSS_SECTIONS: /home/runner/work/cad_to_dagmc/cad_to_dagmc/cross_sections.xml
29
+ shell: bash
30
+ run: |
31
+ wget -O Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
32
+ bash Miniforge3.sh -b -p "${HOME}/conda"
33
+ source "${HOME}/conda/etc/profile.d/conda.sh"
34
+ source "${HOME}/conda/etc/profile.d/mamba.sh"
35
+ sudo apt-get --allow-releaseinfo-change update
36
+ sudo apt-get update -y
37
+ sudo apt-get upgrade -y
38
+ sudo apt-get install -y libgl1-mesa-glx libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev libosmesa6 libosmesa6-dev libgles2-mesa-dev libarchive-dev libpangocairo-1.0-0
39
+ mamba activate
40
+ mamba install -y -c cadquery -c conda-forge moab gmsh python-gmsh cadquery=master "openmc=0.13.3=dagmc*nompi*"
41
+ mamba install -y -c conda-forge "openmc=0.13.3=dagmc*nompi*"
42
+ python -m pip install --upgrade pip
43
+ python -m pip install cad_to_dagmc openmc_data_downloader
44
+ openmc_data_downloader -l ENDFB-7.1-NNDC -i Fe56 Be9
45
+ git clone https://github.com/fusion-energy/model_benchmark_zoo.git
46
+ cd model_benchmark_zoo
47
+ python -m pip install .[tests]
48
+ pytest tests/test_cad_to_dagmc -v
@@ -0,0 +1,63 @@
1
+
2
+ # This CI will launch a Docker image that contains all the dependencies required
3
+ # within that image the pytest test suite is run
4
+ # container:
5
+ # image: continuumio/miniconda3:23.3.1-0
6
+
7
+ name: CI with install
8
+
9
+ on:
10
+ pull_request:
11
+ branches:
12
+ - main
13
+ paths-ignore:
14
+ - 'docs/**'
15
+ - '.gitignore'
16
+ - '*.md'
17
+ - 'CITATION.cff'
18
+ - 'LICENSE.txt'
19
+ - 'readthedocs.yml'
20
+ push:
21
+ branches:
22
+ - main
23
+
24
+ jobs:
25
+ testing:
26
+ runs-on: ubuntu-latest
27
+ steps:
28
+ - name: Checkout repository
29
+ uses: actions/checkout@v4
30
+
31
+ # - uses: conda-incubator/setup-miniconda@v2
32
+
33
+ - name: install non pypi dependencies
34
+ shell: bash
35
+ run: |
36
+ wget -O Miniforge3.sh "https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh"
37
+ bash Miniforge3.sh -b -p "${HOME}/conda"
38
+ source "${HOME}/conda/etc/profile.d/conda.sh"
39
+ source "${HOME}/conda/etc/profile.d/mamba.sh"
40
+ sudo apt-get --allow-releaseinfo-change update
41
+ sudo apt-get update -y
42
+ sudo apt-get upgrade -y
43
+ sudo apt-get install -y libgl1-mesa-glx libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev libosmesa6 libosmesa6-dev libgles2-mesa-dev libarchive-dev libpangocairo-1.0-0
44
+ mamba activate
45
+ mamba install -y -c cadquery -c conda-forge moab gmsh python-gmsh cadquery=master
46
+ python -m pip install --upgrade pip
47
+ python -m pip install .
48
+ python -c "import cad_to_dagmc"
49
+ mamba install -y -c conda-forge "openmc=0.13.3=dagmc*nompi*"
50
+ python -m pip install .[tests]
51
+ pytest tests -v
52
+ cd examples
53
+ python create_stp_files_for_examples.py
54
+ python cadquery_assembly.py
55
+ python cadquery_compound.py
56
+ python cadquery_object_and_stp_file.py
57
+ python cadquery_text.py
58
+ python curved_cadquery_object.py
59
+ python multiple_cadquery_objects.py
60
+ python multiple_stp_files.py
61
+ python single_stp_file_multiple_volumes.py
62
+ python single_cadquery_object.py
63
+ python single_stp_file.py
@@ -136,3 +136,4 @@ dmypy.json
136
136
  *.vtk
137
137
  *.stp
138
138
  src/_version.py
139
+ *.msh
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cad_to_dagmc
3
- Version: 0.5.0
3
+ Version: 0.5.1
4
4
  Summary: Converts CAD files to a DAGMC h5m file
5
5
  Author-email: Jonathan Shimwell <mail@jshimwell.com>
6
6
  Project-URL: Homepage, https://github.com/fusion-energy/cad_to_dagmc
@@ -20,24 +20,25 @@ Requires-Dist: pytest; extra == "tests"
20
20
 
21
21
  [![N|Python](https://www.python.org/static/community_logos/python-powered-w-100x40.png)](https://www.python.org)
22
22
 
23
- [![CI with install](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_install.yml/badge.svg)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_install.yml)
23
+ [![CI with model benchmark zoo](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_benchmarks.yml/badge.svg)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_benchmarks.yml) Testing package and running examples
24
+
25
+ [![CI with model benchmark zoo](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_benchmarks.yml/badge.svg?branch=main)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_benchmarks.yml) Testing with [Model Benchmark Zoo](https://github.com/fusion-energy/model_benchmark_zoo)
24
26
 
25
27
  [![Upload Python Package](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/python-publish.yml/badge.svg)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/python-publish.yml)
26
28
 
27
29
  [![PyPI](https://img.shields.io/pypi/v/cad_to_dagmc?color=brightgreen&label=pypi&logo=grebrightgreenen&logoColor=green)](https://pypi.org/project/cad_to_dagmc/)
28
30
 
29
- ___
30
31
 
31
32
  A minimal package that uses CadQuery functionality to convert CAD geometry to [DAGMC](https://github.com/svalinn/DAGMC/) h5m files
32
33
 
33
- This particular method of producing DAGMC compatible h5m files from CAD geometry
34
- is intended to convert STP files or [CadQuery](https://cadquery.readthedocs.io) objects to h5m file.
35
-
36
- One unique feature of this package is the ability to combine STP files with CadQuery objects.
37
- This allows for the addition of parametric geometry to static geometry.
34
+ This particular method of producing DAGMC compatible h5m files from CAD geometry is intended to convert STP files or [CadQuery](https://cadquery.readthedocs.io) objects to a DAGMC compatible h5m file.
38
35
 
39
36
  The resulting DAGMC geometry can then be used for simulations in [OpenMC](https://github.com/openmc-dev/openmc/) or [other supported codes](https://svalinn.github.io/DAGMC/).
40
37
 
38
+ This package is tested with [pytest tests](https://github.com/fusion-energy/cad_to_dagmc/tree/main/tests) and also the DAGMC geometry made with this package is compared to simulation carried out with native constructive solid geometry, see [Model Benchmark Zoo](https://github.com/fusion-energy/model_benchmark_zoo) for more details.
39
+
40
+ Also checkout these other packages that also create DAGMC geometry [CAD-to-OpenMC](https://github.com/openmsr/CAD_to_OpenMC), [Stellarmesh](https://github.com/Thea-Energy/stellarmesh)
41
+
41
42
  # Installation prerequisite
42
43
 
43
44
  In principle, any Conda/Mamba distribution will work. A few Conda/Mamba options are:
@@ -1,24 +1,25 @@
1
1
 
2
2
  [![N|Python](https://www.python.org/static/community_logos/python-powered-w-100x40.png)](https://www.python.org)
3
3
 
4
- [![CI with install](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_install.yml/badge.svg)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_install.yml)
4
+ [![CI with model benchmark zoo](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_benchmarks.yml/badge.svg)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_benchmarks.yml) Testing package and running examples
5
+
6
+ [![CI with model benchmark zoo](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_benchmarks.yml/badge.svg?branch=main)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/ci_with_benchmarks.yml) Testing with [Model Benchmark Zoo](https://github.com/fusion-energy/model_benchmark_zoo)
5
7
 
6
8
  [![Upload Python Package](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/python-publish.yml/badge.svg)](https://github.com/fusion-energy/cad_to_dagmc/actions/workflows/python-publish.yml)
7
9
 
8
10
  [![PyPI](https://img.shields.io/pypi/v/cad_to_dagmc?color=brightgreen&label=pypi&logo=grebrightgreenen&logoColor=green)](https://pypi.org/project/cad_to_dagmc/)
9
11
 
10
- ___
11
12
 
12
13
  A minimal package that uses CadQuery functionality to convert CAD geometry to [DAGMC](https://github.com/svalinn/DAGMC/) h5m files
13
14
 
14
- This particular method of producing DAGMC compatible h5m files from CAD geometry
15
- is intended to convert STP files or [CadQuery](https://cadquery.readthedocs.io) objects to h5m file.
16
-
17
- One unique feature of this package is the ability to combine STP files with CadQuery objects.
18
- This allows for the addition of parametric geometry to static geometry.
15
+ This particular method of producing DAGMC compatible h5m files from CAD geometry is intended to convert STP files or [CadQuery](https://cadquery.readthedocs.io) objects to a DAGMC compatible h5m file.
19
16
 
20
17
  The resulting DAGMC geometry can then be used for simulations in [OpenMC](https://github.com/openmc-dev/openmc/) or [other supported codes](https://svalinn.github.io/DAGMC/).
21
18
 
19
+ This package is tested with [pytest tests](https://github.com/fusion-energy/cad_to_dagmc/tree/main/tests) and also the DAGMC geometry made with this package is compared to simulation carried out with native constructive solid geometry, see [Model Benchmark Zoo](https://github.com/fusion-energy/model_benchmark_zoo) for more details.
20
+
21
+ Also checkout these other packages that also create DAGMC geometry [CAD-to-OpenMC](https://github.com/openmsr/CAD_to_OpenMC), [Stellarmesh](https://github.com/Thea-Energy/stellarmesh)
22
+
22
23
  # Installation prerequisite
23
24
 
24
25
  In principle, any Conda/Mamba distribution will work. A few Conda/Mamba options are:
@@ -17,12 +17,7 @@ r = s.lineTo(3.0, 0).lineTo(3.0, 1.0).spline(spline_points, includeCurrent=True)
17
17
  cq_shape_1 = r.extrude(-1)
18
18
 
19
19
  s2 = cq.Workplane("XY")
20
- r2 = (
21
- s2.lineTo(3.0, 0)
22
- .lineTo(3.0, 1.0)
23
- .spline(spline_points, includeCurrent=True)
24
- .close()
25
- )
20
+ r2 = s2.lineTo(3.0, 0).lineTo(3.0, 1.0).spline(spline_points, includeCurrent=True).close()
26
21
  cq_shape_2 = r2.extrude(1)
27
22
 
28
23
 
@@ -5,7 +5,5 @@ result = cq.Workplane("XY").moveTo(10, 0).box(3, 3, 0.5).edges("|Z").fillet(0.12
5
5
 
6
6
  my_model = CadToDagmc()
7
7
  my_model.add_cadquery_object(object=result, material_tags=["mat1"])
8
- my_model.add_stp_file(
9
- filename="single_cube.stp", material_tags=["mat2"], scale_factor=0.1
10
- )
8
+ my_model.add_stp_file(filename="single_cube.stp", material_tags=["mat2"], scale_factor=0.1)
11
9
  my_model.export_dagmc_h5m_file(max_mesh_size=0.2, min_mesh_size=0.1)
@@ -16,6 +16,4 @@ my_model.add_cadquery_object(
16
16
  ], # 5 volumes one for each letter
17
17
  )
18
18
 
19
- my_model.export_dagmc_h5m_file(
20
- filename="cadquery_text.h5m", max_mesh_size=0.2, min_mesh_size=0.1
21
- )
19
+ my_model.export_dagmc_h5m_file(filename="cadquery_text.h5m", max_mesh_size=0.2, min_mesh_size=0.1)
@@ -46,12 +46,7 @@ spline_points = [
46
46
  (0.5, 1.0),
47
47
  (0, 1.0),
48
48
  ]
49
- r = (
50
- result.lineTo(3.0, 0)
51
- .lineTo(3.0, 1.0)
52
- .spline(spline_points, includeCurrent=True)
53
- .close()
54
- )
49
+ r = result.lineTo(3.0, 0).lineTo(3.0, 1.0).spline(spline_points, includeCurrent=True).close()
55
50
  result = r.extrude(1.5)
56
51
  assembly = Assembly()
57
52
  assembly.add(result)
@@ -2,7 +2,5 @@ from cad_to_dagmc import CadToDagmc
2
2
 
3
3
  my_model = CadToDagmc()
4
4
  # the d and c from the word dagmc would be tagged with one material and the agm are tagged with another material
5
- my_model.add_stp_file(
6
- "text_dagmc.stp", material_tags=["mat1", "mat2", "mat2", "mat2", "mat1"]
7
- )
5
+ my_model.add_stp_file("text_dagmc.stp", material_tags=["mat1", "mat2", "mat2", "mat2", "mat1"])
8
6
  my_model.export_dagmc_h5m_file()
@@ -0,0 +1,16 @@
1
+ # file generated by setuptools_scm
2
+ # don't change, don't track in version control
3
+ TYPE_CHECKING = False
4
+ if TYPE_CHECKING:
5
+ from typing import Tuple, Union
6
+ VERSION_TUPLE = Tuple[Union[int, str], ...]
7
+ else:
8
+ VERSION_TUPLE = object
9
+
10
+ version: str
11
+ __version__: str
12
+ __version_tuple__: VERSION_TUPLE
13
+ version_tuple: VERSION_TUPLE
14
+
15
+ __version__ = version = '0.5.1'
16
+ __version_tuple__ = version_tuple = (0, 5, 1)
@@ -13,9 +13,4 @@ except PackageNotFoundError:
13
13
 
14
14
  __all__ = ["__version__"]
15
15
 
16
- from .core import CadToDagmc
17
- from .vertices_to_h5m import vertices_to_h5m
18
- from .brep_part_finder import *
19
- from .brep_to_h5m import *
20
-
21
- [CadToDagmc, vertices_to_h5m]
16
+ from .core import *