Skip to content

Commit 77edc84

Browse files
committed
add license and manifest
1 parent 64c534d commit 77edc84

File tree

3 files changed

+48
-1
lines changed

3 files changed

+48
-1
lines changed

LICENSE

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
Rocketsled Copyright (c) 2018, The Regents of the University of
2+
California, through Lawrence Berkeley National Laboratory (subject
3+
to receipt of any required approvals from the U.S. Dept. of Energy).
4+
All rights reserved.
5+
6+
Redistribution and use in source and binary forms, with or without
7+
modification, are permitted provided that the following conditions
8+
are met:
9+
10+
(1) Redistributions of source code must retain the above copyright
11+
notice, this list of conditions and the following disclaimer.
12+
13+
(2) Redistributions in binary form must reproduce the above
14+
copyright notice, this list of conditions and the following
15+
disclaimer in the documentation and/or other materials provided with
16+
the distribution.
17+
18+
(3) Neither the name of the University of California, Lawrence
19+
Berkeley National Laboratory, U.S. Dept. of Energy nor the names of
20+
its contributors may be used to endorse or promote products derived
21+
from this software without specific prior written permission.
22+
23+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26+
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27+
COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28+
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
29+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
31+
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
33+
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34+
POSSIBILITY OF SUCH DAMAGE.
35+
36+
You are under no obligation whatsoever to provide any bug fixes,
37+
patches, or upgrades to the features, functionality or performance
38+
of the source code ("Enhancements") to anyone; however, if you
39+
choose to make your Enhancements available either publicly, or
40+
directly to Lawrence Berkeley National Laboratory or its
41+
contributors, without imposing a separate written license agreement
42+
for such Enhancements, then you hereby grant the following license:
43+
a non-exclusive, royalty-free perpetual license to install, use,
44+
modify, prepare derivative works, incorporate into other computer
45+
software, distribute, and sublicense such enhancements or derivative
46+
works thereof, in binary and source code form.

MANIFEST.ln

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include LICENSE

rocketsled/task.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ class OptTask(FireTaskBase):
172172
'enforce_sequential']
173173

174174
def __init__(self, *args, **kwargs):
175+
# instance attrs to be inserted here...
175176
super(OptTask, self).__init__(*args, **kwargs)
176177

177-
178178
def run_task(self, fw_spec):
179179
"""
180180
FireTask for running an optimization loop.

0 commit comments

Comments
 (0)