You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a Python package containing all internal modules belonging to Cortex instead of importing them using absolute/relative paths.
Motivation
It can avoid collisions with modules added under the root directory of a Cortex project. It also helps in keeping the development environment cleaner (and more compact). Reduces the coupling.
Additional context
Use the standard setuptoolspackage to create the Python package.
When installing the Cortex Python package into each of the images' environments, use pip install -e . to allow live editing of the package.
The text was updated successfully, but these errors were encountered:
Description
Create a Python package containing all internal modules belonging to Cortex instead of importing them using absolute/relative paths.
Motivation
It can avoid collisions with modules added under the root directory of a Cortex project. It also helps in keeping the development environment cleaner (and more compact). Reduces the coupling.
Additional context
Use the standard
setuptools
package to create the Python package.When installing the Cortex Python package into each of the images' environments, use
pip install -e .
to allow live editing of the package.The text was updated successfully, but these errors were encountered: