X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/blobdiff_plain/56e65cb91a4e6759404696f43d44bcebad6b0460..916d092d8a3bc9b0f2097c4f6c953f3a69b668e7:/linpy/__init__.py diff --git a/linpy/__init__.py b/linpy/__init__.py index 2012cb1..bbe5693 100644 --- a/linpy/__init__.py +++ b/linpy/__init__.py @@ -16,13 +16,14 @@ # along with LinPy. If not, see . """ -A polyhedral library based on ISL +A polyhedral library based on isl """ from .geometry import GeometricObject, Point, Vector from .linexprs import LinExpr, Symbol, symbols, Dummy, Rational from .polyhedra import Polyhedron, Lt, Le, Eq, Ne, Ge, Gt, Ne, Empty, Universe from .domains import Domain, And, Or, Not +from ._version import __version__ __all__ = [ @@ -30,4 +31,5 @@ __all__ = [ 'GeometricObject', 'Point', 'Vector', 'Polyhedron', 'Lt', 'Le', 'Eq', 'Ne', 'Ge', 'Gt', 'Empty', 'Universe', 'Domain', 'And', 'Or', 'Not', + '__version__', ]