-
Notifications
You must be signed in to change notification settings - Fork 135
Header and License
Ludee edited this page Dec 9, 2016
·
5 revisions
Decision from the oemof developer meeting - Berlin, December 6, 2016 #218.
- Python files: #!/usr/bin/env python3
"""one line to give the program's name and a brief idea of what it does
A description of the module (short but could be more than one line). This the module header as described in numpydoc and we decided to use numpydoc for docstrings."""
__copyright__ = "Copyright oemof developer group"
[add linebreak]
__license__ = "GPLv3"
import
code
- SQL and other: /* one line to give the program's name and a brief idea of what it does
A description of the module (short but could be more than one line). This the module header as described in numpydoc and we decided to use numpydoc for docstrings.
__copyright__ = "Copyright oemof developer group"
__license__ = "GPLv3"
*/