Adding missing comma.
This commit is contained in:
parent
3df6c0c8a2
commit
ac3fd794f9
|
@ -18,7 +18,7 @@ repos = [
|
|||
("migen", ("https://github.com/m-labs/", True, True)),
|
||||
|
||||
# LiteX SoC builder
|
||||
('litex-data-software-compiler_rt', ("https://github.com/litex-hub/", False, True))
|
||||
('litex-data-software-compiler_rt', ("https://github.com/litex-hub/", False, True)),
|
||||
("litex", ("https://github.com/enjoy-digital/", False, True)),
|
||||
|
||||
# LiteX cores ecosystem
|
||||
|
@ -37,13 +37,13 @@ repos = [
|
|||
("litex-boards", ("https://github.com/litex-hub/", False, True)),
|
||||
|
||||
# Optional LiteX data
|
||||
("litex-data-cpu-blackparrot", ("https://github.com/litex-hub/", False, True))
|
||||
("litex-data-cpu-mor1kx", ("https://github.com/litex-hub/", False, True))
|
||||
("litex-data-cpu-lm32", ("https://github.com/litex-hub/", False, True))
|
||||
("litex-data-cpu-microwatt", ("https://github.com/litex-hub/", False, True))
|
||||
("litex-data-cpu-picorv32", ("https://github.com/litex-hub/", False, True))
|
||||
("litex-data-cpu-rocket", ("https://github.com/litex-hub/", False, True))
|
||||
("litex-data-misc-tapcfg", ("https://github.com/litex-hub/", False, True))
|
||||
("litex-data-cpu-blackparrot", ("https://github.com/litex-hub/", False, True)),
|
||||
("litex-data-cpu-mor1kx", ("https://github.com/litex-hub/", False, True)),
|
||||
("litex-data-cpu-lm32", ("https://github.com/litex-hub/", False, True)),
|
||||
("litex-data-cpu-microwatt", ("https://github.com/litex-hub/", False, True)),
|
||||
("litex-data-cpu-picorv32", ("https://github.com/litex-hub/", False, True)),
|
||||
("litex-data-cpu-rocket", ("https://github.com/litex-hub/", False, True)),
|
||||
("litex-data-misc-tapcfg", ("https://github.com/litex-hub/", False, True)),
|
||||
]
|
||||
repos = OrderedDict(repos)
|
||||
|
||||
|
|
6
setup.py
6
setup.py
|
@ -14,7 +14,11 @@ setup(
|
|||
test_suite="test",
|
||||
license="BSD",
|
||||
python_requires="~=3.6",
|
||||
install_requires=["migen", "pyserial", "litex-data-software-compiler_rt"],
|
||||
install_requires=[
|
||||
"migen",
|
||||
"pyserial",
|
||||
"litex-data-software-compiler_rt",
|
||||
],
|
||||
packages=find_packages(exclude=("test*", "sim*", "doc*")),
|
||||
include_package_data=True,
|
||||
platforms=["Any"],
|
||||
|
|
Loading…
Reference in New Issue