Skip to content

Commit

Permalink
Version bump: 1.02 --> 1.03
Browse files Browse the repository at this point in the history
  • Loading branch information
OBrink committed Sep 27, 2021
1 parent b09c9ca commit 3c25eb1
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions RanDepict/__init__.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 3c25eb1

Please sign in to comment.