Skip to content

Commit 4295898

Browse files
authored
Merge pull request #10 from OpenQuantumDesign/table-and-folder
Support for table and document data
2 parents 0c9ecbf + fd1693e commit 4295898

36 files changed

+1930
-449
lines changed

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
postprocessing/** linguist-vendored
1+
postprocessing/** linguist-vendored

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@
2626
- Subsystem:
2727

2828

29-
* **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)
29+
* **Other information** (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)

.github/workflows/check_copyright.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
- name: Check license & copyright headers
1111
uses: viperproject/check-license-header@v2
1212
with:
13-
path:
13+
path:
1414
config: .github/workflows/check_copyright_config.json
15-
# strict: true
15+
# strict: true

.github/workflows/check_mkdocs_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
uses: astral-sh/setup-uv@v4
2222
# - run: cp -r examples/ docs/examples/
2323
- run: uv pip install .[docs] --system
24-
- run: mkdocs build
24+
- run: mkdocs build

.github/workflows/copyright.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@
1010
# distributed under the License is distributed on an "AS IS" BASIS,
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
13-
# limitations under the License.
13+
# limitations under the License.

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,3 +175,4 @@ cython_debug/
175175
*.code-workspace
176176
.pre-commit-config.yaml
177177
_scripts
178+
.vscode

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The design goals are to have:
1414
- Minimizes *a priori* knowledge that is needed of the internal heirarchical structure, reducing friction for users to load data.
1515
- Transparently return both raw and processed data, where the levels of post-processing can be selected by the user.
1616

17-
To install,
17+
To install,
1818
```bash
1919
pip install git+https://github.com/OpenQuantumDesign/oqd-dataschema.git
2020
```

docs/api.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

docs/api/base.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## Attributes Types
2+
3+
<!-- prettier-ignore -->
4+
::: oqd_dataschema.base
5+
options:
6+
heading_level: 3
7+
members: [
8+
"AttrKey",
9+
"Attrs",
10+
]
11+
12+
## Data Types
13+
14+
<!-- prettier-ignore -->
15+
::: oqd_dataschema.base
16+
options:
17+
heading_level: 3
18+
members: [
19+
"DTypes",
20+
"DTypeNames",
21+
]

docs/api/datastore.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!-- prettier-ignore -->
2+
::: oqd_dataschema.datastore
3+
options:
4+
heading_level: 3
5+
members: [
6+
"Datastore",
7+
]

0 commit comments

Comments
 (0)