-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
getting cleaned up for 0.0.1 release
- Loading branch information
Showing
10 changed files
with
125 additions
and
67 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# ChangeLog | ||
|
||
## 0.0.1 | ||
- Initial release with support for simple templates | ||
|
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 @@ | ||
#!/bin/bash | ||
#**************************************************************************** | ||
#* vte launcher | ||
#**************************************************************************** | ||
|
||
# First, determine the location of this script | ||
if test -f $0; then | ||
script_dir=$(dirname $0) | ||
script_dir=$(cd $script_dir ; pwd) | ||
else | ||
# Find ourselves in the PATH | ||
for elem in $(echo PATH | sed -e 's%:% %g'); do | ||
script=${elem}/$0 | ||
if test -f $script; then | ||
script_dir=$elem | ||
break | ||
fi | ||
done | ||
fi | ||
|
||
vte_dir=$(dirname ${script_dir}) | ||
# Need to adjust PYTHONPATH to find dependencies | ||
export PYTHONPATH=${vte_dir}/lib:$PYTHONPATH | ||
|
||
# This is a development area | ||
if test -d ${vte_dir}/src; then | ||
export PYTHONPATH=${vte_dir}/src:$PYTHONPATH | ||
fi | ||
|
||
python3 -m vte ${@:1} | ||
|
||
|
This file was deleted.
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
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,27 @@ | ||
|
||
import os | ||
from setuptools import setup | ||
|
||
setup( | ||
name = "vte", | ||
packages=['vte'], | ||
package_dir = {'vte' : 'src/vte'}, | ||
author = "Matthew Ballance", | ||
author_email = "[email protected]", | ||
description = ("VTE is a Verification Template Engine for generating content for verification environments from template files and parameters."), | ||
license = "Apache 2.0", | ||
keywords = ["SystemVerilog", "Verilog", "RTL", "GoogleTest"], | ||
url = "https://github.com/mballance/vte", | ||
entry_points={ | ||
'console_scripts': [ | ||
'vte = vte.__main__:main' | ||
] | ||
}, | ||
setup_requires=[ | ||
'setuptools_scm', | ||
], | ||
install_requires=[ | ||
'jinja2>=2.10' | ||
], | ||
) | ||
|
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
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
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,8 @@ | ||
#******************************************************************** | ||
#* ivpm.project | ||
#* | ||
#* Creates a template project for a new IVPM project | ||
#******************************************************************** | ||
|
||
[template] | ||
|