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
If you include a simple setup.py like the one below, you'll able to install your code locally as a Python module and import all subdirectories properly.
This will obviate relative package imports like here
Example setup.py:
from setuptools import setup, find_packages
setup(name='fastforest', version='1.0', packages=find_packages())
The text was updated successfully, but these errors were encountered:
If you include a simple
setup.py
like the one below, you'll able to install your code locally as a Python module and import all subdirectories properly.This will obviate relative package imports like here
Example
setup.py
:The text was updated successfully, but these errors were encountered: