From 3feb78807e77902c63ae684362fff36387149535 Mon Sep 17 00:00:00 2001 From: Stewart Douglas Date: Wed, 7 Oct 2015 15:47:25 -0400 Subject: [PATCH] MAINT: Add license to various files --- zipline/assets/asset_writer.py | 15 +++++++++++++++ zipline/assets/futures.py | 15 +++++++++++++++ zipline/finance/performance/position_tracker.py | 15 +++++++++++++++ 3 files changed, 45 insertions(+) diff --git a/zipline/assets/asset_writer.py b/zipline/assets/asset_writer.py index 5a730360..a1842b67 100644 --- a/zipline/assets/asset_writer.py +++ b/zipline/assets/asset_writer.py @@ -1,3 +1,18 @@ +# +# Copyright 2015 Quantopian, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from abc import ( ABCMeta, abstractmethod, diff --git a/zipline/assets/futures.py b/zipline/assets/futures.py index ab8e0499..a45270b2 100644 --- a/zipline/assets/futures.py +++ b/zipline/assets/futures.py @@ -1,3 +1,18 @@ +# +# Copyright 2015 Quantopian, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from pandas import Timestamp, Timedelta from pandas.tseries.tools import normalize_date diff --git a/zipline/finance/performance/position_tracker.py b/zipline/finance/performance/position_tracker.py index 4fe30982..114c5570 100644 --- a/zipline/finance/performance/position_tracker.py +++ b/zipline/finance/performance/position_tracker.py @@ -1,3 +1,18 @@ +# +# Copyright 2015 Quantopian, Inc. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + from __future__ import division import logbook