-
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
67 additions
and
74 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
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
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
.. toctree:: | ||
|
||
pyVHDLModel | ||
pySystemVerilogModel |
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
# ============================================================================== | ||
# Authors: Patrick Lehmann | ||
# | ||
# Package installer: An abstract VHDL language model. | ||
# Package installer: An abstract System Verilog language model. | ||
# | ||
# License: | ||
# ============================================================================ | ||
|
@@ -32,7 +32,7 @@ | |
from pathlib import Path | ||
from setuptools import setup as setuptools_setup, find_packages as setuptools_find_packages | ||
|
||
gitHubNamespace = "vhdl" | ||
gitHubNamespace = "edaa-org" | ||
projectName = "pySystemVerilogModel" | ||
|
||
# Read README for upload to PyPI | ||
|
@@ -52,7 +52,7 @@ | |
# Assemble all package information | ||
setuptools_setup( | ||
name=projectName, | ||
version="0.1.2", | ||
version="0.2.0", | ||
|
||
author="Patrick Lehmann", | ||
author_email="[email protected]", | ||
|
@@ -70,7 +70,7 @@ | |
'Source Code': sourceCodeURL, | ||
'Issue Tracker': sourceCodeURL + "/issues" | ||
}, | ||
# download_url="https://github.com/vhdl/pyVHDLModel/tarball/0.1.0", | ||
# download_url="https://github.com/edaa-org/pySystemVerilogModel/tarball/0.1.0", | ||
|
||
packages=setuptools_find_packages(exclude=["tests", "tests.*",]), | ||
classifiers=[ | ||
|