From 3c25eb17a8dca0373a8ba275eca70670e6382c5f Mon Sep 17 00:00:00 2001 From: OBrink Date: Mon, 27 Sep 2021 15:38:20 +0200 Subject: [PATCH] Version bump: 1.02 --> 1.03 --- RanDepict/__init__.py | 54 +++++++++++++++++++++---------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/RanDepict/__init__.py b/RanDepict/__init__.py index 46b7512..ba0b597 100644 --- a/RanDepict/__init__.py +++ b/RanDepict/__init__.py @@ -1,27 +1,27 @@ -# -*- coding: utf-8 -*- - -""" -RanDepict Python Package. -This repository contains RanDepict, an easy-to-use utility to generate a big variety of chemical structure depictions (random depiction styles and image augmentations). - - -Typical usage example: - -from RanDepict import random_depictor -smiles = "CN1C=NC2=C1C(=O)N(C(=O)N2C)C" -with random_depictor() as depictor: - image = depictor(smiles) - -Have a look in the RanDepictNotebook.ipynb for more examples. - -For comments, bug reports or feature ideas, please raise a issue on the Github repository. - -""" - -__version__ = "1.0.2" - -__all__ = [ - "RanDepict", -] - -from .RanDepict import random_depictor +# -*- coding: utf-8 -*- + +""" +RanDepict Python Package. +This repository contains RanDepict, an easy-to-use utility to generate a big variety of chemical structure depictions (random depiction styles and image augmentations). + + +Typical usage example: + +from RanDepict import random_depictor +smiles = "CN1C=NC2=C1C(=O)N(C(=O)N2C)C" +with random_depictor() as depictor: + image = depictor(smiles) + +Have a look in the RanDepictNotebook.ipynb for more examples. + +For comments, bug reports or feature ideas, please raise a issue on the Github repository. + +""" + +__version__ = "1.0.3" + +__all__ = [ + "RanDepict", +] + +from .RanDepict import random_depictor