-
Notifications
You must be signed in to change notification settings - Fork 191
Contributing gotchas
Leopold Talirz edited this page May 19, 2020
·
2 revisions
-
If you add static files (anything that is not a python file/module), these will not be installed with
pip
. To include them, add them in theMANIFEST.in
file using the same syntax as the examples you find there (or look online for the docs). -
Whenever possible, delay imports from
aiida
to the function level (rather than module level). Unnecessary module-level imports are frequently responsible for unresponsiveverdi
commands.