rtl-aid 0.2.1__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {rtl_aid-0.2.1/src/rtl_aid.egg-info → rtl_aid-0.2.2}/PKG-INFO +1 -1
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/pyproject.toml +1 -1
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/src/rtl_aid/__init__.py +1 -1
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/src/rtl_aid/cli.py +8 -1
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/src/rtl_aid/lint.py +6 -0
- {rtl_aid-0.2.1 → rtl_aid-0.2.2/src/rtl_aid.egg-info}/PKG-INFO +1 -1
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/LICENSE +0 -0
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/README.md +0 -0
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/setup.cfg +0 -0
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/src/rtl_aid/core.py +0 -0
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/src/rtl_aid.egg-info/SOURCES.txt +0 -0
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/src/rtl_aid.egg-info/dependency_links.txt +0 -0
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/src/rtl_aid.egg-info/entry_points.txt +0 -0
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/src/rtl_aid.egg-info/top_level.txt +0 -0
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/tests/test_core.py +0 -0
- {rtl_aid-0.2.1 → rtl_aid-0.2.2}/tests/test_lint.py +0 -0
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
import argparse
|
|
2
|
+
from . import __version__
|
|
2
3
|
from .core import VerilogWikiParser
|
|
3
4
|
|
|
4
5
|
def main():
|
|
5
|
-
parser = argparse.ArgumentParser()
|
|
6
|
+
parser = argparse.ArgumentParser(prog="rtldoc")
|
|
7
|
+
|
|
8
|
+
parser.add_argument(
|
|
9
|
+
"--version",
|
|
10
|
+
action="version",
|
|
11
|
+
version=f"%(prog)s {__version__}"
|
|
12
|
+
)
|
|
6
13
|
|
|
7
14
|
group = parser.add_mutually_exclusive_group(required=True)
|
|
8
15
|
|
|
@@ -4,6 +4,7 @@ import sys
|
|
|
4
4
|
import os
|
|
5
5
|
import argparse
|
|
6
6
|
import shutil
|
|
7
|
+
from . import __version__
|
|
7
8
|
|
|
8
9
|
|
|
9
10
|
def _get_verilator_version():
|
|
@@ -228,6 +229,11 @@ def main():
|
|
|
228
229
|
prog="rtllint",
|
|
229
230
|
description="Run verilator lint on Verilog files and tag warnings inline"
|
|
230
231
|
)
|
|
232
|
+
parser.add_argument(
|
|
233
|
+
"--version",
|
|
234
|
+
action="version",
|
|
235
|
+
version=f"%(prog)s {__version__}"
|
|
236
|
+
)
|
|
231
237
|
parser.add_argument(
|
|
232
238
|
"file",
|
|
233
239
|
nargs="+",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|