polycubetools 1.1.0__py3-none-any.whl

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.
@@ -0,0 +1,19 @@
1
+ """
2
+ Polycube Tools
3
+ ~~~~~~~~~~~~~~~~~~~
4
+
5
+ Basic framework for working with polycubes in a 3-dimensional grid.
6
+
7
+ :license: MIT, see LICENSE for more details.
8
+ """
9
+
10
+ __author__ = "Team Polycube"
11
+ __title__ = "polycubetools"
12
+ __license__ = "MIT"
13
+ __version__ = "1.1.0"
14
+
15
+ from . import utils as utils
16
+ from .grid import *
17
+ from .hull import *
18
+ from .models import *
19
+ from .solver import *