pySVModel 0.5.4__tar.gz → 0.5.6__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.
- {pysvmodel-0.5.4 → pysvmodel-0.5.6}/PKG-INFO +29 -30
- {pysvmodel-0.5.4 → pysvmodel-0.5.6}/pySVModel/__init__.py +7 -7
- {pysvmodel-0.5.4 → pysvmodel-0.5.6}/pySVModel.egg-info/PKG-INFO +29 -30
- {pysvmodel-0.5.4 → pysvmodel-0.5.6}/pySVModel.egg-info/requires.txt +27 -27
- {pysvmodel-0.5.4 → pysvmodel-0.5.6}/pyproject.toml +9 -11
- {pysvmodel-0.5.4 → pysvmodel-0.5.6}/setup.py +3 -2
- {pysvmodel-0.5.4 → pysvmodel-0.5.6}/LICENSE.md +0 -0
- {pysvmodel-0.5.4 → pysvmodel-0.5.6}/README.md +0 -0
- {pysvmodel-0.5.4 → pysvmodel-0.5.6}/pySVModel.egg-info/SOURCES.txt +0 -0
- {pysvmodel-0.5.4 → pysvmodel-0.5.6}/pySVModel.egg-info/dependency_links.txt +0 -0
- {pysvmodel-0.5.4 → pysvmodel-0.5.6}/pySVModel.egg-info/top_level.txt +0 -0
- {pysvmodel-0.5.4 → pysvmodel-0.5.6}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pySVModel
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.6
|
|
4
4
|
Summary: An abstract SystemVerilog language model (incl. Verilog).
|
|
5
5
|
Home-page: https://GitHub.com/edaa-org/pySVModel
|
|
6
6
|
Author: Patrick Lehmann
|
|
@@ -18,54 +18,53 @@ Classifier: Topic :: Software Development :: Code Generators
|
|
|
18
18
|
Classifier: Topic :: Software Development :: Compilers
|
|
19
19
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
20
20
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
23
|
Classifier: Programming Language :: Python :: 3.13
|
|
25
24
|
Classifier: Programming Language :: Python :: 3.14
|
|
26
25
|
Classifier: Development Status :: 3 - Alpha
|
|
27
|
-
Requires-Python: >=3.
|
|
26
|
+
Requires-Python: >=3.11
|
|
28
27
|
Description-Content-Type: text/markdown
|
|
29
28
|
License-File: LICENSE.md
|
|
30
|
-
Requires-Dist: pyTooling~=8.
|
|
29
|
+
Requires-Dist: pyTooling~=8.10
|
|
31
30
|
Provides-Extra: doc
|
|
32
|
-
Requires-Dist: pyTooling~=8.7; extra == "doc"
|
|
33
|
-
Requires-Dist: sphinx_reports~=0.9; extra == "doc"
|
|
34
|
-
Requires-Dist: sphinx_autodoc_typehints~=3.5; extra == "doc"
|
|
35
|
-
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "doc"
|
|
36
31
|
Requires-Dist: sphinx~=8.2; extra == "doc"
|
|
37
|
-
Requires-Dist:
|
|
32
|
+
Requires-Dist: pyTooling~=8.10; extra == "doc"
|
|
33
|
+
Requires-Dist: sphinx_autodoc_typehints~=3.5; extra == "doc"
|
|
38
34
|
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "doc"
|
|
35
|
+
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "doc"
|
|
36
|
+
Requires-Dist: docutils~=0.21.0; extra == "doc"
|
|
39
37
|
Requires-Dist: docutils_stubs~=0.0.22; extra == "doc"
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist:
|
|
38
|
+
Requires-Dist: sphinx-copybutton>=0.5.0; extra == "doc"
|
|
39
|
+
Requires-Dist: autoapi>=2.0.1; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx_reports~=0.9.0; extra == "doc"
|
|
41
|
+
Requires-Dist: sphinx_design~=0.6.0; extra == "doc"
|
|
43
42
|
Provides-Extra: test
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist: Coverage~=7.11; extra == "test"
|
|
46
|
-
Requires-Dist: lxml<7.0,>=5.4; extra == "test"
|
|
47
|
-
Requires-Dist: mypy[reports]~=1.18; extra == "test"
|
|
43
|
+
Requires-Dist: mypy[reports]~=1.19; extra == "test"
|
|
48
44
|
Requires-Dist: pytest-cov~=7.0; extra == "test"
|
|
49
|
-
Requires-Dist: pyTooling~=8.
|
|
45
|
+
Requires-Dist: pyTooling~=8.10; extra == "test"
|
|
50
46
|
Requires-Dist: typing_extensions~=4.15; extra == "test"
|
|
47
|
+
Requires-Dist: pytest~=9.0; extra == "test"
|
|
48
|
+
Requires-Dist: Coverage~=7.13; extra == "test"
|
|
49
|
+
Requires-Dist: lxml<7.0,>=5.4; extra == "test"
|
|
51
50
|
Provides-Extra: all
|
|
52
|
-
Requires-Dist: pytest~=8.4; extra == "all"
|
|
53
|
-
Requires-Dist: Coverage~=7.11; extra == "all"
|
|
54
|
-
Requires-Dist: sphinx_reports~=0.9; extra == "all"
|
|
55
|
-
Requires-Dist: lxml<7.0,>=5.4; extra == "all"
|
|
56
|
-
Requires-Dist: sphinx_autodoc_typehints~=3.5; extra == "all"
|
|
57
|
-
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "all"
|
|
58
51
|
Requires-Dist: sphinx~=8.2; extra == "all"
|
|
59
|
-
Requires-Dist:
|
|
60
|
-
Requires-Dist:
|
|
52
|
+
Requires-Dist: pyTooling~=8.10; extra == "all"
|
|
53
|
+
Requires-Dist: sphinx_autodoc_typehints~=3.5; extra == "all"
|
|
54
|
+
Requires-Dist: mypy[reports]~=1.19; extra == "all"
|
|
61
55
|
Requires-Dist: pytest-cov~=7.0; extra == "all"
|
|
62
|
-
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "all"
|
|
63
56
|
Requires-Dist: typing_extensions~=4.15; extra == "all"
|
|
64
|
-
Requires-Dist:
|
|
65
|
-
Requires-Dist:
|
|
66
|
-
Requires-Dist:
|
|
67
|
-
Requires-Dist:
|
|
57
|
+
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "all"
|
|
58
|
+
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "all"
|
|
59
|
+
Requires-Dist: pytest~=9.0; extra == "all"
|
|
60
|
+
Requires-Dist: docutils~=0.21.0; extra == "all"
|
|
68
61
|
Requires-Dist: docutils_stubs~=0.0.22; extra == "all"
|
|
62
|
+
Requires-Dist: sphinx-copybutton>=0.5.0; extra == "all"
|
|
63
|
+
Requires-Dist: autoapi>=2.0.1; extra == "all"
|
|
64
|
+
Requires-Dist: sphinx_reports~=0.9.0; extra == "all"
|
|
65
|
+
Requires-Dist: Coverage~=7.13; extra == "all"
|
|
66
|
+
Requires-Dist: sphinx_design~=0.6.0; extra == "all"
|
|
67
|
+
Requires-Dist: lxml<7.0,>=5.4; extra == "all"
|
|
69
68
|
Dynamic: author
|
|
70
69
|
Dynamic: author-email
|
|
71
70
|
Dynamic: classifier
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
# #
|
|
12
12
|
# License: #
|
|
13
13
|
# ==================================================================================================================== #
|
|
14
|
-
# Copyright 2021-
|
|
14
|
+
# Copyright 2021-2026 Patrick Lehmann - Boetzingen, Germany #
|
|
15
15
|
# #
|
|
16
16
|
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
|
17
17
|
# you may not use this file except in compliance with the License. #
|
|
@@ -39,7 +39,7 @@ supporting multiple frontends.
|
|
|
39
39
|
|
|
40
40
|
.. admonition:: Copyright Information
|
|
41
41
|
|
|
42
|
-
:copyright: Copyright 2021-
|
|
42
|
+
:copyright: Copyright 2021-2026 Patrick Lehmann - Bötzingen, Germany
|
|
43
43
|
:license: Apache License, Version 2.0
|
|
44
44
|
"""
|
|
45
45
|
from enum import unique, Enum
|
|
@@ -50,9 +50,9 @@ from pyTooling.Decorators import export
|
|
|
50
50
|
|
|
51
51
|
__author__ = "Patrick Lehmann"
|
|
52
52
|
__email__ = "Paebbels@gmail.com"
|
|
53
|
-
__copyright__ = "2021-
|
|
53
|
+
__copyright__ = "2021-2026, Patrick Lehmann"
|
|
54
54
|
__license__ = "Apache License, Version 2.0"
|
|
55
|
-
__version__ = "0.5.
|
|
55
|
+
__version__ = "0.5.6"
|
|
56
56
|
|
|
57
57
|
|
|
58
58
|
@export
|
|
@@ -114,7 +114,7 @@ class SystemVerilogVersion(Enum):
|
|
|
114
114
|
"Latest": Latest
|
|
115
115
|
} #: Dictionary of (System)Verilog year codes variants as integer and strings for mapping to unique enum values.
|
|
116
116
|
|
|
117
|
-
def __init__(self, *_):
|
|
117
|
+
def __init__(self, *_) -> None:
|
|
118
118
|
"""Patch the embedded MAP dictionary"""
|
|
119
119
|
for k, v in self.__class__.__VERSION_MAPPINGS__.items():
|
|
120
120
|
if (not isinstance(v, self.__class__)) and (v == self.value):
|
|
@@ -237,7 +237,7 @@ class SystemVerilogVersion(Enum):
|
|
|
237
237
|
"""
|
|
238
238
|
Formats the SystemVerilog version to pattern ``SV'xx`` or in case of classic Verilog to ``Verilog'xx``.
|
|
239
239
|
|
|
240
|
-
:
|
|
240
|
+
:returns: Formatted (System)Verilog version.
|
|
241
241
|
"""
|
|
242
242
|
if self.value == self.Any.value:
|
|
243
243
|
return "SV'Any"
|
|
@@ -254,7 +254,7 @@ class SystemVerilogVersion(Enum):
|
|
|
254
254
|
"""
|
|
255
255
|
Formats the (System)Verilog version to pattern ``xxxx``.
|
|
256
256
|
|
|
257
|
-
:
|
|
257
|
+
:returns: Formatted (System)Verilog version.
|
|
258
258
|
"""
|
|
259
259
|
if self.value == self.Any.value:
|
|
260
260
|
return "Any"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pySVModel
|
|
3
|
-
Version: 0.5.
|
|
3
|
+
Version: 0.5.6
|
|
4
4
|
Summary: An abstract SystemVerilog language model (incl. Verilog).
|
|
5
5
|
Home-page: https://GitHub.com/edaa-org/pySVModel
|
|
6
6
|
Author: Patrick Lehmann
|
|
@@ -18,54 +18,53 @@ Classifier: Topic :: Software Development :: Code Generators
|
|
|
18
18
|
Classifier: Topic :: Software Development :: Compilers
|
|
19
19
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
20
20
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
22
21
|
Classifier: Programming Language :: Python :: 3.11
|
|
23
22
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
23
|
Classifier: Programming Language :: Python :: 3.13
|
|
25
24
|
Classifier: Programming Language :: Python :: 3.14
|
|
26
25
|
Classifier: Development Status :: 3 - Alpha
|
|
27
|
-
Requires-Python: >=3.
|
|
26
|
+
Requires-Python: >=3.11
|
|
28
27
|
Description-Content-Type: text/markdown
|
|
29
28
|
License-File: LICENSE.md
|
|
30
|
-
Requires-Dist: pyTooling~=8.
|
|
29
|
+
Requires-Dist: pyTooling~=8.10
|
|
31
30
|
Provides-Extra: doc
|
|
32
|
-
Requires-Dist: pyTooling~=8.7; extra == "doc"
|
|
33
|
-
Requires-Dist: sphinx_reports~=0.9; extra == "doc"
|
|
34
|
-
Requires-Dist: sphinx_autodoc_typehints~=3.5; extra == "doc"
|
|
35
|
-
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "doc"
|
|
36
31
|
Requires-Dist: sphinx~=8.2; extra == "doc"
|
|
37
|
-
Requires-Dist:
|
|
32
|
+
Requires-Dist: pyTooling~=8.10; extra == "doc"
|
|
33
|
+
Requires-Dist: sphinx_autodoc_typehints~=3.5; extra == "doc"
|
|
38
34
|
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "doc"
|
|
35
|
+
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "doc"
|
|
36
|
+
Requires-Dist: docutils~=0.21.0; extra == "doc"
|
|
39
37
|
Requires-Dist: docutils_stubs~=0.0.22; extra == "doc"
|
|
40
|
-
Requires-Dist:
|
|
41
|
-
Requires-Dist:
|
|
42
|
-
Requires-Dist:
|
|
38
|
+
Requires-Dist: sphinx-copybutton>=0.5.0; extra == "doc"
|
|
39
|
+
Requires-Dist: autoapi>=2.0.1; extra == "doc"
|
|
40
|
+
Requires-Dist: sphinx_reports~=0.9.0; extra == "doc"
|
|
41
|
+
Requires-Dist: sphinx_design~=0.6.0; extra == "doc"
|
|
43
42
|
Provides-Extra: test
|
|
44
|
-
Requires-Dist:
|
|
45
|
-
Requires-Dist: Coverage~=7.11; extra == "test"
|
|
46
|
-
Requires-Dist: lxml<7.0,>=5.4; extra == "test"
|
|
47
|
-
Requires-Dist: mypy[reports]~=1.18; extra == "test"
|
|
43
|
+
Requires-Dist: mypy[reports]~=1.19; extra == "test"
|
|
48
44
|
Requires-Dist: pytest-cov~=7.0; extra == "test"
|
|
49
|
-
Requires-Dist: pyTooling~=8.
|
|
45
|
+
Requires-Dist: pyTooling~=8.10; extra == "test"
|
|
50
46
|
Requires-Dist: typing_extensions~=4.15; extra == "test"
|
|
47
|
+
Requires-Dist: pytest~=9.0; extra == "test"
|
|
48
|
+
Requires-Dist: Coverage~=7.13; extra == "test"
|
|
49
|
+
Requires-Dist: lxml<7.0,>=5.4; extra == "test"
|
|
51
50
|
Provides-Extra: all
|
|
52
|
-
Requires-Dist: pytest~=8.4; extra == "all"
|
|
53
|
-
Requires-Dist: Coverage~=7.11; extra == "all"
|
|
54
|
-
Requires-Dist: sphinx_reports~=0.9; extra == "all"
|
|
55
|
-
Requires-Dist: lxml<7.0,>=5.4; extra == "all"
|
|
56
|
-
Requires-Dist: sphinx_autodoc_typehints~=3.5; extra == "all"
|
|
57
|
-
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "all"
|
|
58
51
|
Requires-Dist: sphinx~=8.2; extra == "all"
|
|
59
|
-
Requires-Dist:
|
|
60
|
-
Requires-Dist:
|
|
52
|
+
Requires-Dist: pyTooling~=8.10; extra == "all"
|
|
53
|
+
Requires-Dist: sphinx_autodoc_typehints~=3.5; extra == "all"
|
|
54
|
+
Requires-Dist: mypy[reports]~=1.19; extra == "all"
|
|
61
55
|
Requires-Dist: pytest-cov~=7.0; extra == "all"
|
|
62
|
-
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "all"
|
|
63
56
|
Requires-Dist: typing_extensions~=4.15; extra == "all"
|
|
64
|
-
Requires-Dist:
|
|
65
|
-
Requires-Dist:
|
|
66
|
-
Requires-Dist:
|
|
67
|
-
Requires-Dist:
|
|
57
|
+
Requires-Dist: sphinxcontrib-mermaid~=1.0; extra == "all"
|
|
58
|
+
Requires-Dist: sphinx_rtd_theme~=3.0; extra == "all"
|
|
59
|
+
Requires-Dist: pytest~=9.0; extra == "all"
|
|
60
|
+
Requires-Dist: docutils~=0.21.0; extra == "all"
|
|
68
61
|
Requires-Dist: docutils_stubs~=0.0.22; extra == "all"
|
|
62
|
+
Requires-Dist: sphinx-copybutton>=0.5.0; extra == "all"
|
|
63
|
+
Requires-Dist: autoapi>=2.0.1; extra == "all"
|
|
64
|
+
Requires-Dist: sphinx_reports~=0.9.0; extra == "all"
|
|
65
|
+
Requires-Dist: Coverage~=7.13; extra == "all"
|
|
66
|
+
Requires-Dist: sphinx_design~=0.6.0; extra == "all"
|
|
67
|
+
Requires-Dist: lxml<7.0,>=5.4; extra == "all"
|
|
69
68
|
Dynamic: author
|
|
70
69
|
Dynamic: author-email
|
|
71
70
|
Dynamic: classifier
|
|
@@ -1,42 +1,42 @@
|
|
|
1
|
-
pyTooling~=8.
|
|
1
|
+
pyTooling~=8.10
|
|
2
2
|
|
|
3
3
|
[all]
|
|
4
|
-
pytest~=8.4
|
|
5
|
-
Coverage~=7.11
|
|
6
|
-
sphinx_reports~=0.9
|
|
7
|
-
lxml<7.0,>=5.4
|
|
8
|
-
sphinx_autodoc_typehints~=3.5
|
|
9
|
-
sphinx_rtd_theme~=3.0
|
|
10
4
|
sphinx~=8.2
|
|
11
|
-
|
|
12
|
-
|
|
5
|
+
pyTooling~=8.10
|
|
6
|
+
sphinx_autodoc_typehints~=3.5
|
|
7
|
+
mypy[reports]~=1.19
|
|
13
8
|
pytest-cov~=7.0
|
|
14
|
-
sphinxcontrib-mermaid~=1.0
|
|
15
9
|
typing_extensions~=4.15
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
10
|
+
sphinxcontrib-mermaid~=1.0
|
|
11
|
+
sphinx_rtd_theme~=3.0
|
|
12
|
+
pytest~=9.0
|
|
13
|
+
docutils~=0.21.0
|
|
20
14
|
docutils_stubs~=0.0.22
|
|
15
|
+
sphinx-copybutton>=0.5.0
|
|
16
|
+
autoapi>=2.0.1
|
|
17
|
+
sphinx_reports~=0.9.0
|
|
18
|
+
Coverage~=7.13
|
|
19
|
+
sphinx_design~=0.6.0
|
|
20
|
+
lxml<7.0,>=5.4
|
|
21
21
|
|
|
22
22
|
[doc]
|
|
23
|
-
pyTooling~=8.7
|
|
24
|
-
sphinx_reports~=0.9
|
|
25
|
-
sphinx_autodoc_typehints~=3.5
|
|
26
|
-
sphinx_rtd_theme~=3.0
|
|
27
23
|
sphinx~=8.2
|
|
28
|
-
|
|
24
|
+
pyTooling~=8.10
|
|
25
|
+
sphinx_autodoc_typehints~=3.5
|
|
29
26
|
sphinxcontrib-mermaid~=1.0
|
|
27
|
+
sphinx_rtd_theme~=3.0
|
|
28
|
+
docutils~=0.21.0
|
|
30
29
|
docutils_stubs~=0.0.22
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
30
|
+
sphinx-copybutton>=0.5.0
|
|
31
|
+
autoapi>=2.0.1
|
|
32
|
+
sphinx_reports~=0.9.0
|
|
33
|
+
sphinx_design~=0.6.0
|
|
34
34
|
|
|
35
35
|
[test]
|
|
36
|
-
|
|
37
|
-
Coverage~=7.11
|
|
38
|
-
lxml<7.0,>=5.4
|
|
39
|
-
mypy[reports]~=1.18
|
|
36
|
+
mypy[reports]~=1.19
|
|
40
37
|
pytest-cov~=7.0
|
|
41
|
-
pyTooling~=8.
|
|
38
|
+
pyTooling~=8.10
|
|
42
39
|
typing_extensions~=4.15
|
|
40
|
+
pytest~=9.0
|
|
41
|
+
Coverage~=7.13
|
|
42
|
+
lxml<7.0,>=5.4
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
[build-system]
|
|
2
2
|
requires = [
|
|
3
3
|
"setuptools >= 80.0",
|
|
4
|
-
"wheel ~= 0.45",
|
|
5
|
-
"pyTooling ~= 8.
|
|
4
|
+
"wheel ~= 0.45.0",
|
|
5
|
+
"pyTooling ~= 8.10"
|
|
6
6
|
]
|
|
7
7
|
build-backend = "setuptools.build_meta"
|
|
8
8
|
|
|
@@ -36,23 +36,21 @@ namespace_packages = true
|
|
|
36
36
|
html_report = "report/typing"
|
|
37
37
|
|
|
38
38
|
[tool.pytest]
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
[tool.pyedaa-reports]
|
|
42
|
-
junit_xml = "report/unit/unittest.xml"
|
|
43
|
-
|
|
44
|
-
[tool.pytest.ini_options]
|
|
45
|
-
addopts = "--tb=native"
|
|
39
|
+
addopts = ["--tb=native"]
|
|
46
40
|
# Don't set 'python_classes = *' otherwise, pytest doesn't search for classes
|
|
47
41
|
# derived from unittest.Testcase
|
|
48
|
-
python_files = "*"
|
|
49
|
-
python_functions = "test_*"
|
|
42
|
+
python_files = ["*"]
|
|
43
|
+
python_functions = ["test_*"]
|
|
50
44
|
filterwarnings = [
|
|
51
45
|
"error::DeprecationWarning",
|
|
52
46
|
"error::PendingDeprecationWarning"
|
|
53
47
|
]
|
|
48
|
+
junit_xml = "report/unit/UnittestReportSummary.xml"
|
|
54
49
|
junit_logging = "all"
|
|
55
50
|
|
|
51
|
+
[tool.pyedaa-reports]
|
|
52
|
+
junit_xml = "report/unit/unittest.xml"
|
|
53
|
+
|
|
56
54
|
[tool.interrogate]
|
|
57
55
|
color = true
|
|
58
56
|
verbose = 1 # possible values: 0 (minimal output), 1 (-v), 2 (-vv)
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
# #
|
|
12
12
|
# License: #
|
|
13
13
|
# ==================================================================================================================== #
|
|
14
|
-
# Copyright 2021-
|
|
14
|
+
# Copyright 2021-2026 Patrick Lehmann - Boetzingen, Germany #
|
|
15
15
|
# #
|
|
16
16
|
# Licensed under the Apache License, Version 2.0 (the "License"); #
|
|
17
17
|
# you may not use this file except in compliance with the License. #
|
|
@@ -46,12 +46,13 @@ setup(
|
|
|
46
46
|
gitHubNamespace=gitHubNamespace,
|
|
47
47
|
keywords="Python3 Verilog SystemVerilog Language Model Abstract",
|
|
48
48
|
sourceFileWithVersion=packageInformationFile,
|
|
49
|
-
developmentStatus="alpha",
|
|
50
49
|
classifiers=list(DEFAULT_CLASSIFIERS) + [
|
|
51
50
|
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
|
|
52
51
|
"Topic :: Software Development :: Code Generators",
|
|
53
52
|
"Topic :: Software Development :: Compilers"
|
|
54
53
|
],
|
|
54
|
+
developmentStatus="alpha",
|
|
55
|
+
pythonVersions=("3.11", "3.12", "3.13", "3.14"),
|
|
55
56
|
dataFiles={
|
|
56
57
|
packageName: ["py.typed"]
|
|
57
58
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|