From 255a98b3d1f8203e75c4bf722d88f3dd89d064cd Mon Sep 17 00:00:00 2001 From: Marcello Sega Date: Sun, 24 Jan 2021 14:43:19 +0100 Subject: [PATCH] README updated, version bumped --- README.rst | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index ee54e51..96999d4 100644 --- a/README.rst +++ b/README.rst @@ -11,6 +11,8 @@ This is a python interface to tetgen, a powerful and fast mesh generator (http:/ This package includes the tetgen source, v.1.5, and provides (so far) minimal bindings to be ables to generate meshes in python. The basic interface follows (and can be used to replace) that of `scipy.spatial.Delaunay `_. +2D points triangulation with consistent API is provided through `triangle `_. + Basic Usage =========== diff --git a/setup.py b/setup.py index 4837401..727f9b7 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name = 'pytetgen', packages=['pytetgen'], - version = '0.2.0', + version = '0.2.1', description = 'wrapper for the tetgen mesh generator', long_description=long_description, author = 'Marcello Sega',