-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
473 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,5 @@ parser.out | |
parsetab.py | ||
*.rpt | ||
*.log | ||
/*.v | ||
/*.v | ||
requirements_tmp.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Copyright 2023 Efabless Corporation | ||
# | ||
# 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. | ||
import os | ||
import importlib.metadata | ||
import sys | ||
|
||
|
||
def __get_version(): | ||
try: | ||
return importlib.metadata.version(__package__ or __name__) | ||
except importlib.metadata.PackageNotFoundError: | ||
import re | ||
|
||
rx = re.compile(r"version\s*=\s*\"([^\"]+)\"") | ||
openlane_directory = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) | ||
pyproject_path = os.path.join(openlane_directory, "pyproject.toml") | ||
try: | ||
match = rx.search(open(pyproject_path, encoding="utf8").read()) | ||
assert match is not None, "pyproject.toml found, but without a version" | ||
return match[1] | ||
except FileNotFoundError: | ||
print("Warning: Failed to extract nl2diff version.", file=sys.stderr) | ||
return "UNKNOWN" | ||
|
||
|
||
__version__ = __get_version() | ||
|
||
|
||
if __name__ == "__main__": | ||
print(__version__, end="") |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[tool.poetry] | ||
name = "nldiff" | ||
version = "0.1.0" # Replace with your actual version | ||
description = "Netlist Diff Tool" | ||
authors = ["Mohamed Gaber <[email protected]>"] | ||
license = "MIT" # Replace with your license if different. Common ones: MIT, Apache-2.0, GPL-3.0 | ||
readme = "Readme.md" | ||
packages = [{ include = "nldiff" }] # This is how Poetry handles packages | ||
classifiers = [ | ||
"Programming Language:: Python:: 3", | ||
"Intended Audience:: Developers", | ||
"Operating System:: POSIX:: Linux", | ||
"Operating System:: MacOS:: MacOS X", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" # Redundant, but good practice to keep here too | ||
click = ">=8.0.0,<9" | ||
pyverilog = "*" | ||
|
||
|
||
[tool.poetry.group.dev.dependencies] | ||
wheel = "*" | ||
black = ">=24.4.0,<25" | ||
flake8 = ">=4" | ||
|
||
[tool.poetry.scripts] | ||
nldiff = "nldiff.__main__:diff_cmd" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.