Skip to content

Commit

Permalink
pyproject.toml: fix installation issues (#41)
Browse files Browse the repository at this point in the history
Submodules (protocol, support, commands, gateware) were not installed
in certain scenarios.
  • Loading branch information
mndza authored Mar 21, 2024
1 parent 76326cc commit 9740392
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,9 @@ dependencies = [
[project.urls]
repository = "https://github.com/greatscottgadgets/apollo"

[tool.setuptools]
packages = ["apollo_fpga"]
[tool.setuptools.packages.find]
where = ["."]
include = ["apollo_fpga*"]

[project.scripts]
apollo = "apollo_fpga.commands.cli:main"

0 comments on commit 9740392

Please sign in to comment.