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
Certain parts of CNNectome can be useful as library and should be distributed as such. Distribution (of the relevant) as a library would make CNNectome reusable and allow for better reproducible builds (i.e. create docker containers or requirements.txt specifying the version of CNNectome to be fetched from PyPI). Also, it would allow for easier separation of scripts from library code. This should be as simple as just adding a setup.py file at the top level and specifying the packages as well as dependencies.
In particular, I am talking about networks/*.py but there might be other parts of CNNectome for which that is true.
The only difficulty would be to introduce another level in the directory tree for more unique imports in python, e.g. change
Certain parts of CNNectome can be useful as library and should be distributed as such. Distribution (of the relevant) as a library would make CNNectome reusable and allow for better reproducible builds (i.e. create docker containers or
requirements.txt
specifying the version of CNNectome to be fetched from PyPI). Also, it would allow for easier separation of scripts from library code. This should be as simple as just adding asetup.py
file at the top level and specifying the packages as well as dependencies.In particular, I am talking about
networks/*.py
but there might be other parts of CNNectome for which that is true.The only difficulty would be to introduce another level in the directory tree for more unique imports in python, e.g. change
into
(only relevant files shown, only showing changes for networks)
The text was updated successfully, but these errors were encountered: