From c0d62c482c942448da4fe19a641110488c0003fc Mon Sep 17 00:00:00 2001 From: Colton Hicks Date: Mon, 5 Aug 2024 14:42:32 -0700 Subject: [PATCH] Added CNAME to docs directory. Updated periodic_table docstring. --- CHANGELOG.md | 3 +++ docs/CNAME | 1 + qcio/constants.py | 4 ++++ 3 files changed, 8 insertions(+) create mode 100644 docs/CNAME diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cb8f54..5fb5d2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [unreleased] +- Added `CNAME` file to `/docs` directory. +- Added `data_source` and `data_url` to `periodic_table` docstring. + ## [0.11.7] - 2024-07-27 ### Added diff --git a/docs/CNAME b/docs/CNAME new file mode 100644 index 0000000..530a71d --- /dev/null +++ b/docs/CNAME @@ -0,0 +1 @@ +qcio.coltonhicks.com \ No newline at end of file diff --git a/qcio/constants.py b/qcio/constants.py index 70a1177..2f0d0ee 100644 --- a/qcio/constants.py +++ b/qcio/constants.py @@ -133,6 +133,10 @@ def number(self, number: int) -> Atom: periodic_table = PeriodicTable.from_pubchem() """Periodic table data from PubChem. + Attributes: + data_source (str): Data source. + data_url (str): Data URL. + Example: ```python >>> from qcio.constnats import periodic_table as pt