diff --git a/.zenodo.json b/.zenodo.json new file mode 100644 index 00000000..570d3767 --- /dev/null +++ b/.zenodo.json @@ -0,0 +1,8 @@ +{ + "license": "BSD3", + "creators": [ + { + "name": "Hirotomo Moriwaki" + } + ] +} diff --git a/README.rst b/README.rst index 3b0dd4dd..1b1a08b0 100644 --- a/README.rst +++ b/README.rst @@ -186,6 +186,7 @@ Documentation - `master `__ - `develop `__ +- `v0.5.1 `__ - `v0.5.0 `__ - `v0.4.1 `__ - `v0.4.0 `__ diff --git a/mordred/RingCount.py b/mordred/RingCount.py index a2a21ec7..195c7f65 100644 --- a/mordred/RingCount.py +++ b/mordred/RingCount.py @@ -79,10 +79,18 @@ def description(self): else: o = "{}-membered ".format(self._order) - return "{}{}{}ring count".format( + if self._aromatic is None: + a = "" + elif self._aromatic is True: + a = "aromatic " + else: + a = "aliphatic " + + return "{}{}{}{}ring count".format( o, + a, "fused " if self._fused else "", - "aromatic " if self._aromatic else "", + "hetero " if self._hetero else "", ) @classmethod diff --git a/mordred/_version.txt b/mordred/_version.txt index 8f0916f7..4b9fcbec 100644 --- a/mordred/_version.txt +++ b/mordred/_version.txt @@ -1 +1 @@ -0.5.0 +0.5.1