Is it possible to have a setup.py file in the native directory that installs both pkg_a and pkg_b? If so, what would that look like?
something like
native
|-- setup.py
|-- pkg_a
|-- example_pkg/a
|-- setup.py
|-- pkg_b
|-- example_pkg/b
|-- setup.py
Thank you.
Is it possible to have a
setup.pyfile in the native directory that installs both pkg_a and pkg_b? If so, what would that look like?something like
Thank you.