File tree Expand file tree Collapse file tree 13 files changed +205
-2
lines changed
Expand file tree Collapse file tree 13 files changed +205
-2
lines changed Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ Apache License
186186 same "printed page" as the copyright notice for easier
187187 identification within third-party archives.
188188
189- Copyright {yyyy} {name of copyright owner}
189+ Copyright 2014, Digital Reasoning
190190
191191 Licensed under the Apache License, Version 2.0 (the "License");
192192 you may not use this file except in compliance with the License.
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+
3+ # Copyright 2014, Digital Reasoning
4+ #
5+ # Licensed under the Apache License, Version 2.0 (the "License");
6+ # you may not use this file except in compliance with the License.
7+ # You may obtain a copy of the License at
8+ #
9+ # http://www.apache.org/licenses/LICENSE-2.0
10+ #
11+ # Unless required by applicable law or agreed to in writing, software
12+ # distributed under the License is distributed on an "AS IS" BASIS,
13+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ # See the License for the specific language governing permissions and
15+ # limitations under the License.
16+ #
17+
118import os
219import sys
320
@@ -22,7 +39,7 @@ def load_pip_requirements(fp):
2239 return reqs , deps
2340
2441# Set version
25- __version__ = '0.0.0' # Explicit default
42+ __version__ = '0.0.0' # Explicit default
2643execfile ("stackdio/client/version.py" )
2744
2845
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+
3+ # Copyright 2014, Digital Reasoning
4+ #
5+ # Licensed under the Apache License, Version 2.0 (the "License");
6+ # you may not use this file except in compliance with the License.
7+ # You may obtain a copy of the License at
8+ #
9+ # http://www.apache.org/licenses/LICENSE-2.0
10+ #
11+ # Unless required by applicable law or agreed to in writing, software
12+ # distributed under the License is distributed on an "AS IS" BASIS,
13+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ # See the License for the specific language governing permissions and
15+ # limitations under the License.
16+ #
17+
118import json
219import logging
320
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+
3+ # Copyright 2014, Digital Reasoning
4+ #
5+ # Licensed under the Apache License, Version 2.0 (the "License");
6+ # you may not use this file except in compliance with the License.
7+ # You may obtain a copy of the License at
8+ #
9+ # http://www.apache.org/licenses/LICENSE-2.0
10+ #
11+ # Unless required by applicable law or agreed to in writing, software
12+ # distributed under the License is distributed on an "AS IS" BASIS,
13+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ # See the License for the specific language governing permissions and
15+ # limitations under the License.
16+ #
17+
118import json
219
320from .exceptions import StackException
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+
3+ # Copyright 2014, Digital Reasoning
4+ #
5+ # Licensed under the Apache License, Version 2.0 (the "License");
6+ # you may not use this file except in compliance with the License.
7+ # You may obtain a copy of the License at
8+ #
9+ # http://www.apache.org/licenses/LICENSE-2.0
10+ #
11+ # Unless required by applicable law or agreed to in writing, software
12+ # distributed under the License is distributed on an "AS IS" BASIS,
13+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ # See the License for the specific language governing permissions and
15+ # limitations under the License.
16+ #
17+
118class StackException (Exception ):
219 pass
320
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+
3+ # Copyright 2014, Digital Reasoning
4+ #
5+ # Licensed under the Apache License, Version 2.0 (the "License");
6+ # you may not use this file except in compliance with the License.
7+ # You may obtain a copy of the License at
8+ #
9+ # http://www.apache.org/licenses/LICENSE-2.0
10+ #
11+ # Unless required by applicable law or agreed to in writing, software
12+ # distributed under the License is distributed on an "AS IS" BASIS,
13+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ # See the License for the specific language governing permissions and
15+ # limitations under the License.
16+ #
17+
118import json
219
320from .exceptions import StackException
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+
3+ # Copyright 2014, Digital Reasoning
4+ #
5+ # Licensed under the Apache License, Version 2.0 (the "License");
6+ # you may not use this file except in compliance with the License.
7+ # You may obtain a copy of the License at
8+ #
9+ # http://www.apache.org/licenses/LICENSE-2.0
10+ #
11+ # Unless required by applicable law or agreed to in writing, software
12+ # distributed under the License is distributed on an "AS IS" BASIS,
13+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ # See the License for the specific language governing permissions and
15+ # limitations under the License.
16+ #
17+
118import logging
219import requests
320
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+
3+ # Copyright 2014, Digital Reasoning
4+ #
5+ # Licensed under the Apache License, Version 2.0 (the "License");
6+ # you may not use this file except in compliance with the License.
7+ # You may obtain a copy of the License at
8+ #
9+ # http://www.apache.org/licenses/LICENSE-2.0
10+ #
11+ # Unless required by applicable law or agreed to in writing, software
12+ # distributed under the License is distributed on an "AS IS" BASIS,
13+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ # See the License for the specific language governing permissions and
15+ # limitations under the License.
16+ #
17+
118import json
219
320from .exceptions import StackException
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+
3+ # Copyright 2014, Digital Reasoning
4+ #
5+ # Licensed under the Apache License, Version 2.0 (the "License");
6+ # you may not use this file except in compliance with the License.
7+ # You may obtain a copy of the License at
8+ #
9+ # http://www.apache.org/licenses/LICENSE-2.0
10+ #
11+ # Unless required by applicable law or agreed to in writing, software
12+ # distributed under the License is distributed on an "AS IS" BASIS,
13+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ # See the License for the specific language governing permissions and
15+ # limitations under the License.
16+ #
17+
118import json
219
320from .exceptions import StackException
Original file line number Diff line number Diff line change 1+ # -*- coding: utf-8 -*-
2+
3+ # Copyright 2014, Digital Reasoning
4+ #
5+ # Licensed under the Apache License, Version 2.0 (the "License");
6+ # you may not use this file except in compliance with the License.
7+ # You may obtain a copy of the License at
8+ #
9+ # http://www.apache.org/licenses/LICENSE-2.0
10+ #
11+ # Unless required by applicable law or agreed to in writing, software
12+ # distributed under the License is distributed on an "AS IS" BASIS,
13+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+ # See the License for the specific language governing permissions and
15+ # limitations under the License.
16+ #
117
218from .exceptions import StackException
319from .http import HttpMixin , endpoint
You can’t perform that action at this time.
0 commit comments