Skip to content

Commit

Permalink
Updated file headers.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Jan 16, 2022
1 parent 99047c6 commit 9169821
Show file tree
Hide file tree
Showing 4 changed files with 121 additions and 92 deletions.
63 changes: 31 additions & 32 deletions pySVModel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,38 +1,37 @@
# =============================================================================
# ____ _ __ __ _ _ __ __ _ _
# _ __ _ _/ ___| _ _ ___| |_ ___ _ __ __\ \ / /__ _ __(_) | ___ __ _| \/ | ___ __| | ___| |
# | '_ \| | | \___ \| | | / __| __/ _ \ '_ ` _ \ \ / / _ \ '__| | |/ _ \ / _` | |\/| |/ _ \ / _` |/ _ \ |
# | |_) | |_| |___) | |_| \__ \ || __/ | | | | \ V / __/ | | | | (_) | (_| | | | | (_) | (_| | __/ |
# | .__/ \__, |____/ \__, |___/\__\___|_| |_| |_|\_/ \___|_| |_|_|\___/ \__, |_| |_|\___/ \__,_|\___|_|
# |_| |___/ |___/ |___/
# ==============================================================================
# Authors: Patrick Lehmann
#
# Python package: An abstract SystemVerilog language model.
#
# License:
# ==============================================================================
# Copyright 2021-2021 Patrick Lehmann - Boetzingen, Germany
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
# ==============================================================================
# ==================================================================================================================== #
# ______ ____ __ _ _ #
# _ __ _ _/ ___\ \ / / \/ | ___ __| | ___| | #
# | '_ \| | | \___ \\ \ / /| |\/| |/ _ \ / _` |/ _ \ | #
# | |_) | |_| |___) |\ V / | | | | (_) | (_| | __/ | #
# | .__/ \__, |____/ \_/ |_| |_|\___/ \__,_|\___|_| #
# |_| |___/ #
# ==================================================================================================================== #
# Authors: #
# Patrick Lehmann #
# #
# License: #
# ==================================================================================================================== #
# Copyright 2021-2022 Patrick Lehmann - Boetzingen, Germany #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
# #
# SPDX-License-Identifier: Apache-2.0 #
# ==================================================================================================================== #
#
"""
An abstract SystemVerilog language model.
:copyright: Copyright 2021-2021 Patrick Lehmann - Bötzingen, Germany
:copyright: Copyright 2021-2022 Patrick Lehmann - Bötzingen, Germany
:license: Apache License, Version 2.0
"""
from enum import unique, Enum
Expand All @@ -43,7 +42,7 @@

__author__ = "Patrick Lehmann"
__email__ = "[email protected]"
__copyright__ = "2021-2021, Patrick Lehmann"
__copyright__ = "2021-2022, Patrick Lehmann"
__license__ = "Apache License, Version 2.0"
__version__ = "0.3.5"

Expand Down
60 changes: 30 additions & 30 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
# =============================================================================
# ______ ____ __ _ _
# _ __ _ _/ ___\ \ / / \/ | ___ __| | ___| |
# | '_ \| | | \___ \\ \ / /| |\/| |/ _ \ / _` |/ _ \ |
# | |_) | |_| |___) |\ V / | | | | (_) | (_| | __/ |
# | .__/ \__, |____/ \_/ |_| |_|\___/ \__,_|\___|_|
# |_| |___/
# ==============================================================================
# Authors: Patrick Lehmann
#
# Package installer: An abstract System Verilog language model.
#
# License:
# ============================================================================
# Copyright 2021-2021 Patrick Lehmann - Boetzingen, Germany
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
# ============================================================================
# ==================================================================================================================== #
# ______ ____ __ _ _ #
# _ __ _ _/ ___\ \ / / \/ | ___ __| | ___| | #
# | '_ \| | | \___ \\ \ / /| |\/| |/ _ \ / _` |/ _ \ | #
# | |_) | |_| |___) |\ V / | | | | (_) | (_| | __/ | #
# | .__/ \__, |____/ \_/ |_| |_|\___/ \__,_|\___|_| #
# |_| |___/ #
# ==================================================================================================================== #
# Authors: #
# Patrick Lehmann #
# #
# License: #
# ==================================================================================================================== #
# Copyright 2021-2022 Patrick Lehmann - Boetzingen, Germany #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
# #
# SPDX-License-Identifier: Apache-2.0 #
# ==================================================================================================================== #
#
"""Package installer for 'An abstract System Verilog language model'."""
from pathlib import Path
from pyTooling.Packaging import DescribePythonPackageHostedOnGitHub, DEFAULT_CLASSIFIERS

Expand Down
60 changes: 30 additions & 30 deletions tests/unit/Instantiate.py
Original file line number Diff line number Diff line change
@@ -1,34 +1,34 @@
# =============================================================================
# ____ _ __ __ _ _ __ __ _ _
# _ __ _ _/ ___| _ _ ___| |_ ___ _ __ __\ \ / /__ _ __(_) | ___ __ _| \/ | ___ __| | ___| |
# | '_ \| | | \___ \| | | / __| __/ _ \ '_ ` _ \ \ / / _ \ '__| | |/ _ \ / _` | |\/| |/ _ \ / _` |/ _ \ |
# | |_) | |_| |___) | |_| \__ \ || __/ | | | | \ V / __/ | | | | (_) | (_| | | | | (_) | (_| | __/ |
# | .__/ \__, |____/ \__, |___/\__\___|_| |_| |_|\_/ \___|_| |_|_|\___/ \__, |_| |_|\___/ \__,_|\___|_|
# |_| |___/ |___/ |___/
# ==============================================================================
# Authors: Patrick Lehmann
#
# Python unittest: Instantiation tests for the language model.
#
# License:
# ==============================================================================
# Copyright 2021-2021 Patrick Lehmann - Boetzingen, Germany
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# SPDX-License-Identifier: Apache-2.0
# ==============================================================================
# ==================================================================================================================== #
# ______ ____ __ _ _ #
# _ __ _ _/ ___\ \ / / \/ | ___ __| | ___| | #
# | '_ \| | | \___ \\ \ / /| |\/| |/ _ \ / _` |/ _ \ | #
# | |_) | |_| |___) |\ V / | | | | (_) | (_| | __/ | #
# | .__/ \__, |____/ \_/ |_| |_|\___/ \__,_|\___|_| #
# |_| |___/ #
# ==================================================================================================================== #
# Authors: #
# Patrick Lehmann #
# #
# License: #
# ==================================================================================================================== #
# Copyright 2021-2022 Patrick Lehmann - Boetzingen, Germany #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
# #
# SPDX-License-Identifier: Apache-2.0 #
# ==================================================================================================================== #
#
"""Instantiation tests for the language model."""
from unittest import TestCase

from pySVModel import VerilogVersion, SystemVerilogVersion
Expand Down
30 changes: 30 additions & 0 deletions tests/unit/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# ==================================================================================================================== #
# ______ ____ __ _ _ #
# _ __ _ _/ ___\ \ / / \/ | ___ __| | ___| | #
# | '_ \| | | \___ \\ \ / /| |\/| |/ _ \ / _` |/ _ \ | #
# | |_) | |_| |___) |\ V / | | | | (_) | (_| | __/ | #
# | .__/ \__, |____/ \_/ |_| |_|\___/ \__,_|\___|_| #
# |_| |___/ #
# ==================================================================================================================== #
# Authors: #
# Patrick Lehmann #
# #
# License: #
# ==================================================================================================================== #
# Copyright 2021-2022 Patrick Lehmann - Boetzingen, Germany #
# #
# Licensed under the Apache License, Version 2.0 (the "License"); #
# you may not use this file except in compliance with the License. #
# You may obtain a copy of the License at #
# #
# http://www.apache.org/licenses/LICENSE-2.0 #
# #
# Unless required by applicable law or agreed to in writing, software #
# distributed under the License is distributed on an "AS IS" BASIS, #
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. #
# See the License for the specific language governing permissions and #
# limitations under the License. #
# #
# SPDX-License-Identifier: Apache-2.0 #
# ==================================================================================================================== #
#

0 comments on commit 9169821

Please sign in to comment.