Skip to content

Commit

Permalink
Added MPL-2.0 license to all source code files
Browse files Browse the repository at this point in the history
  • Loading branch information
saxbophone committed Oct 30, 2018
1 parent 5bd8f5a commit 943c2f3
Show file tree
Hide file tree
Showing 16 changed files with 117 additions and 15 deletions.
8 changes: 7 additions & 1 deletion basest/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
8 changes: 7 additions & 1 deletion basest/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
8 changes: 7 additions & 1 deletion basest/core/best_ratio.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
8 changes: 7 additions & 1 deletion basest/core/decode.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
8 changes: 7 additions & 1 deletion basest/core/encode.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
8 changes: 7 additions & 1 deletion basest/core/utils.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
8 changes: 7 additions & 1 deletion basest/encoders/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
8 changes: 7 additions & 1 deletion basest/encoders/encoder.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
8 changes: 7 additions & 1 deletion basest/exceptions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
import os

from pip.req import parse_requirements
Expand Down
9 changes: 8 additions & 1 deletion stress_test.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/usr/bin/python
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
7 changes: 7 additions & 0 deletions tests/__main__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
8 changes: 7 additions & 1 deletion tests/core/test_best_ratio.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
8 changes: 7 additions & 1 deletion tests/core/test_encode_decode.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
8 changes: 7 additions & 1 deletion tests/core/test_encode_decode_raw.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down
8 changes: 7 additions & 1 deletion tests/encoders/test_encoder.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2016, 2018, Joshua Saxby <[email protected]>
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http:https://mozilla.org/MPL/2.0/.
#
from __future__ import (
absolute_import, division, print_function, unicode_literals
)
Expand Down

0 comments on commit 943c2f3

Please sign in to comment.