Skip to content

Commit

Permalink
Merge branch 'main' into fix/not_enforce_longitudinal
Browse files Browse the repository at this point in the history
  • Loading branch information
tientong98 authored Jan 17, 2025
2 parents 8c1387c + 04b5862 commit 22e7ecd
Show file tree
Hide file tree
Showing 12 changed files with 1,225 additions and 74 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -136,4 +136,5 @@ data/*
.DS_Store
notebooks/testdata
.vscode/settings.json
notebooks/test1
notebooks/test1
docs/generated
21 changes: 20 additions & 1 deletion cubids/__about__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-
# vi: set ft=python sts=4 ts=4 sw=4 et:
"""Base module variables."""
"""Base module variables for CuBIDS.
This module defines the base variables for the CuBIDS package, including version,
package name, copyright, credits, and URLs.
Attributes
----------
__version__ : str
The version of the CuBIDS package.
__packagename__ : str
The name of the CuBIDS package.
__copyright__ : str
The copyright information for the CuBIDS package.
__credits__ : str
The credits for the CuBIDS package.
__url__ : str
The URL for the CuBIDS package repository.
DOWNLOAD_URL : str
The URL to download the CuBIDS package.
"""
try:
from cubids._version import __version__
except ImportError:
Expand Down
35 changes: 34 additions & 1 deletion cubids/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,37 @@
"""Top-level package for CuBIDS."""
"""Top-level package for CuBIDS.
This module initializes the CuBIDS package and imports its main submodules and attributes.
Submodules
----------
cli : module
Command-line interface for CuBIDS.
config : module
Configuration utilities for CuBIDS.
constants : module
Constants used throughout the CuBIDS package.
cubids : module
Core functionalities of the CuBIDS package.
metadata_merge : module
Utilities for merging metadata in CuBIDS.
utils : module
Utility functions for CuBIDS.
validator : module
Validation utilities for CuBIDS.
workflows : module
Workflows for CuBIDS operations.
Attributes
----------
__version__ : str
The version of the CuBIDS package.
__packagename__ : str
The name of the CuBIDS package.
__copyright__ : str
The copyright information for the CuBIDS package.
__credits__ : str
The credits for the CuBIDS package.
"""

from cubids import (
cli,
Expand Down
Loading

0 comments on commit 22e7ecd

Please sign in to comment.