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
This is a good S/W question about best-practices and intended use-cases. Right now, major RadClass scripts are contained in three folders: RadClass/, models/, and scripts/. We also have setup.py that allows for RadClass to be packaged/installed with pip (i.e. pip install .).
As far as I can tell with local testing, the way setup.py is currently written means that only scripts in RadClass/ will installed as part of the RadClass pip package. If true, we either need to move scripts/ and models/ under RadClass/ (assuming those should be package, which I think they should be) or we need to specify the additional directories in setup.py.
The text was updated successfully, but these errors were encountered:
This is a good S/W question about best-practices and intended use-cases. Right now, major RadClass scripts are contained in three folders:
RadClass/
,models/
, andscripts/
. We also havesetup.py
that allows for RadClass to be packaged/installed with pip (i.e.pip install .
).As far as I can tell with local testing, the way
setup.py
is currently written means that only scripts inRadClass/
will installed as part of theRadClass
pip package. If true, we either need to movescripts/
andmodels/
underRadClass/
(assuming those should be package, which I think they should be) or we need to specify the additional directories insetup.py
.The text was updated successfully, but these errors were encountered: