fill in more hwif utility functions for dereferencer

This commit is contained in:
Alex Mykyta
2021-07-16 18:05:57 -07:00
parent e3a49a65fb
commit f473dfb9e7
24 changed files with 1105 additions and 285 deletions

View File

@@ -1,11 +1,11 @@
import os
import setuptools
with open("README.md", "r") as fh:
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
with open(os.path.join("peakrdl/regblock", "__about__.py")) as f:
with open(os.path.join("peakrdl/regblock", "__about__.py"), encoding='utf-8') as f:
v_dict = {}
exec(f.read(), v_dict)
version = v_dict['__version__']
@@ -22,7 +22,7 @@ setuptools.setup(
packages=['peakrdl.regblock'],
include_package_data=True,
install_requires=[
"systemrdl-compiler>=1.13.2",
"systemrdl-compiler>=1.21.0",
"Jinja2>=2.11",
],
classifiers=(