-
Notifications
You must be signed in to change notification settings - Fork 32
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
1 parent
d0e6c70
commit 217d4ea
Showing
23 changed files
with
60 additions
and
54 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
# System on Chip toolkit for nMigen | ||
# System on Chip toolkit for Amaranth HDL | ||
|
||
## CPU and peripheral building blocks | ||
TODO | ||
|
||
TBD | ||
## License | ||
|
||
### License | ||
|
||
nMigen is released under the very permissive two-clause BSD license. Under the terms of this license, you are authorized to use nMigen for closed-source proprietary designs. | ||
Amaranth is released under the very permissive two-clause BSD license. Under the terms of this license, you are authorized to use Amaranth for closed-source proprietary designs. | ||
|
||
See [LICENSE.txt](LICENSE.txt) file for full copyright and license info. |
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,11 @@ | ||
try: | ||
try: | ||
from importlib import metadata as importlib_metadata # py3.8+ stdlib | ||
except ImportError: | ||
import importlib_metadata # py3.7- shim | ||
__version__ = importlib_metadata.version(__package__) | ||
except ImportError: | ||
# No importlib_metadata. This shouldn't normally happen, but some people prefer not installing | ||
# packages via pip at all, instead using PYTHONPATH directly or copying the package files into | ||
# `lib/pythonX.Y/site-packages`. Although not a recommended way, we still try to support it. | ||
__version__ = "unknown" # :nocov: |
File renamed without changes.
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
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
nmigen_soc/test/test_csr_bus.py → amaranth_soc/test/test_csr_bus.py
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
6 changes: 3 additions & 3 deletions
6
nmigen_soc/test/test_csr_event.py → amaranth_soc/test/test_csr_event.py
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
6 changes: 3 additions & 3 deletions
6
nmigen_soc/test/test_csr_wishbone.py → amaranth_soc/test/test_csr_wishbone.py
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
6 changes: 3 additions & 3 deletions
6
nmigen_soc/test/test_event.py → amaranth_soc/test/test_event.py
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
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
nmigen_soc/test/test_wishbone_bus.py → amaranth_soc/test/test_wishbone_bus.py
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
File renamed without changes.
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,18 +15,21 @@ def local_scheme(version): | |
|
||
|
||
setup( | ||
name="nmigen-soc", | ||
name="amaranth-soc", | ||
use_scm_version=scm_version(), | ||
author="whitequark", | ||
author_email="[email protected]", | ||
description="System on Chip toolkit for nMigen", | ||
description="System on Chip toolkit for Amaranth HDL", | ||
#long_description="""TODO""", | ||
license="BSD", | ||
setup_requires=["wheel", "setuptools", "setuptools_scm"], | ||
install_requires=["nmigen>=0.2,<0.5"], | ||
install_requires=[ | ||
"amaranth>=0.2,<0.5", | ||
"importlib_metadata; python_version<'3.8'", | ||
], | ||
packages=find_packages(), | ||
project_urls={ | ||
"Source Code": "https://github.com/nmigen/nmigen-soc", | ||
"Bug Tracker": "https://github.com/nmigen/nmigen-soc/issues", | ||
"Source Code": "https://github.com/amaranth-lang/amaranth-soc", | ||
"Bug Tracker": "https://github.com/amaranth-lang/amaranth-soc/issues", | ||
}, | ||
) |