Skip to content

Commit

Permalink
Implement license change to AGPL-3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Jan 22, 2022
1 parent 2d624da commit cb53fd5
Show file tree
Hide file tree
Showing 8 changed files with 627 additions and 233 deletions.
1 change: 1 addition & 0 deletions CHANGES.rst
Expand Up @@ -6,6 +6,7 @@ Changelog
development
===========
- Add example for annotating phenology data within Grafana
- Change license to AGPL-3.0


2020-12-27 0.1.2
Expand Down
795 changes: 619 additions & 176 deletions LICENSE

Large diffs are not rendered by default.

12 changes: 1 addition & 11 deletions examples/phenodata-mellifera/demo.py
@@ -1,17 +1,7 @@
"""
Copyright 2020 Andreas Motl <andreas@hiveeyes.org>
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.
License: GNU Affero General Public License, Version 3
"""
import urllib.parse
from datetime import datetime, timedelta
Expand Down
12 changes: 1 addition & 11 deletions examples/sinewave-midnights/demo.py
Expand Up @@ -2,17 +2,7 @@
Copyright 2017 Linar <linar@jether-energy.com>
Copyright 2020 Andreas Motl <andreas.motl@panodata.org>
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.
License: GNU Affero General Public License, Version 3
"""
import pandas as pd
import numpy as np
Expand Down
12 changes: 1 addition & 11 deletions grafana_pandas_datasource/__init__.py
Expand Up @@ -2,17 +2,7 @@
Copyright 2017 Linar <linar@jether-energy.com>
Copyright 2020 Andreas Motl <andreas.motl@panodata.org>
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.
License: GNU Affero General Public License, Version 3
"""
from flask import Flask
from flask_cors import CORS
Expand Down
12 changes: 1 addition & 11 deletions grafana_pandas_datasource/registry.py
Expand Up @@ -2,17 +2,7 @@
Copyright 2017 Linar <linar@jether-energy.com>
Copyright 2020 Andreas Motl <andreas.motl@panodata.org>
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.
License: GNU Affero General Public License, Version 3
"""
from typing import Dict, Callable
from dataclasses import dataclass, field
Expand Down
12 changes: 1 addition & 11 deletions grafana_pandas_datasource/service.py
Expand Up @@ -2,17 +2,7 @@
Copyright 2017 Linar <linar@jether-energy.com>
Copyright 2020 Andreas Motl <andreas.motl@panodata.org>
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.
License: GNU Affero General Public License, Version 3
"""
from flask import Blueprint, request, jsonify, abort
from flask_cors import cross_origin
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Expand Up @@ -6,7 +6,7 @@ authors = [
"Andreas Motl <andreas.motl@panodata.org>",
"Linar <linar@jether-energy.com>"
]
license = "Apache-2.0"
license = "AGPL-3.0"
readme = "README.rst"
include = [
"LICENSE",
Expand All @@ -30,7 +30,7 @@ classifiers = [
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
Expand Down

0 comments on commit cb53fd5

Please sign in to comment.