Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add spdx identifiers #3

Merged
merged 1 commit into from
May 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/blue_cwl/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""blue_cwl."""

from importlib.metadata import version
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/brain_regions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Brain regions helper functions module."""

import importlib
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/cli.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Workflow wrappers."""

import logging
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/connectome.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Connectome assembly of macro and micro connectome matrices.

All matrices are comprised of columns, a subset of which is the index columns and the rest the
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/constants.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Constants."""

DEFAULT_CIRCUIT_BUILD_PARAMETERS = {
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Core module."""

from blue_cwl.core.parser import parse_cwl_file
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/command.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Local/Remote command building and execution."""

import logging
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/common.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Common."""

import json
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Config definitions."""

from typing import Literal
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/cwl.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""CWL workflow construction module."""

import logging
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/cwl_types.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Types module."""

import enum
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/environment.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Environment related utilities."""

from pathlib import Path
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Exceptions module."""


Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/executor.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""CWL Executors."""

import abc
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/parser.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Parsing module for cwl files."""

import logging
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/process.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Executable Process creation module."""

import logging
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/resolve.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Parameter resolving utils."""

import re
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/types.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Common types."""

import os
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Utilities."""

import functools
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/core/validate.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Validation utils."""

import json
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/density_manipulation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""DensityManipulation of nrrd files."""

import copy
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""CWL Registry Exceptions."""


Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/hashing.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Hashing."""

from hashlib import sha256
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/me_model/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# SPDX-License-Identifier: Apache-2.0

"""me_model init."""
2 changes: 2 additions & 0 deletions src/blue_cwl/me_model/entity.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Entities."""

from entity_management.config import MEModelConfig as _MEModelConfig
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/me_model/recipe.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""MEModel recipe generation."""

import hashlib
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/me_model/staging.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Staging module."""

from copy import deepcopy
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/mmodel/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# SPDX-License-Identifier: Apache-2.0

"""MModel."""
2 changes: 2 additions & 0 deletions src/blue_cwl/mmodel/config.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Config splitting function."""

from copy import deepcopy
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/mmodel/entity.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Entities."""

from entity_management.core import Entity
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/mmodel/overrides.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Topological synthesis inputs overrides."""

from copy import deepcopy
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/mmodel/recipe.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Utils for building mmodel tool inputs."""

from pathlib import Path
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/mmodel/schemas.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Schemas."""

import hashlib
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/mmodel/staging.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Staging utils for mmodel."""

from functools import partial
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/model.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Custom Base Model for pydantic classes."""

import pydantic
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/nexus.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Nexus stuff."""

import logging
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/population_utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Functions applied on libsonata populations."""

import libsonata
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/recipes.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Construction of recipes for circuit building."""

import itertools
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/registering.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Registering utilities."""

from pathlib import Path
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/staging.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Staging utils."""

import logging
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/statistics.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Composition summary statistics."""

import logging
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/testing.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Testing resources."""

import os
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/typing.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Typing related definitions."""

import os
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/utils.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Utilities."""

import functools
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/validation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Validation functions."""

from importlib import resources
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/variant.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Variant entry."""

import importlib.resources
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/wrappers/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
# SPDX-License-Identifier: Apache-2.0

"""circuit-build wrappers."""
2 changes: 2 additions & 0 deletions src/blue_cwl/wrappers/cell_composition_manipulation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Composition manipulation."""

import logging
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/wrappers/cell_composition_summary.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Cell composition summary app."""

import logging
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/wrappers/connectome_filtering_synapses.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Synapse filtering module."""

import copy
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/wrappers/connectome_generation_placeholder.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Connectome manipulation wrapper."""

import copy
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/wrappers/density_calculation.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Density calculation app."""

import multiprocessing
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/wrappers/memodel.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""me-model wrapper."""

import logging
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/wrappers/mmodel.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Placeholder emodel assignment."""

import logging
Expand Down
2 changes: 2 additions & 0 deletions src/blue_cwl/wrappers/neurons_cell_position.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# SPDX-License-Identifier: Apache-2.0

"""Morphoelectrical type generator function module."""

import logging
Expand Down
Loading