Skip to content

Commit 9d5e0f8

Browse files
committed
feat: apply license BSD-3-Clause;
1 parent c9d1ae4 commit 9d5e0f8

21 files changed

+50
-696
lines changed

LICENSE

Lines changed: 28 additions & 674 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<img alt="the latest release version" src="https://img.shields.io/github/v/release/wenjiedu/tsdb?color=EE781F&include_prereleases&label=Release&logo=github&logoColor=white">
1313
</a>
1414
<a href="https://github.com/WenjieDu/TSDB/blob/main/LICENSE">
15-
<img alt="GPL-v3 license" src="https://img.shields.io/badge/License-GPL--v3-E9BB41?logo=opensourceinitiative&logoColor=white">
15+
<img alt="BSD-3 license" src="https://img.shields.io/badge/License-BSD--3-E9BB41?logo=opensourceinitiative&logoColor=white">
1616
</a>
1717
<a href='https://github.com/WenjieDu/TSDB/actions/workflows/testing_ci.yml'>
1818
<img alt='GitHub Testing' src='https://img.shields.io/github/actions/workflow/status/wenjiedu/tsdb/testing_ci.yml?logo=github&color=C8D8E1&label=CI'>

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Welcome to TSDB documentation!
1818
.. image:: https://img.shields.io/github/v/release/wenjiedu/tsdb?color=EE781F&include_prereleases&label=Release&logo=github&logoColor=white
1919
:alt: the latest release version
2020
:target: https://img.shields.io/github/v/release/wenjiedu/tsdb?color=EE781F&include_prereleases&label=Release&logo=github&logoColor=white
21-
.. image:: https://img.shields.io/badge/License-GPL--v3-E9BB41?logo=opensourceinitiative&logoColor=white
21+
.. image:: https://img.shields.io/badge/License-BSD--3-E9BB41?logo=opensourceinitiative&logoColor=white
2222
:alt: License
2323
:target: https://github.com/WenjieDu/TSDB/blob/main/LICENSE
2424
.. image:: https://img.shields.io/github/actions/workflow/status/wenjiedu/tsdb/testing_ci.yml?logo=github&color=C8D8E1&label=CI

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file stores some meta configurations for project PyPOTS.
22

33
# Created by Wenjie Du <[email protected]>
4-
# License: GLP-v3
4+
# License: BSD-3-Clause
55

66
[flake8]
77
# People may argue that coding style is personal. This may be true if the project is personal and one works like a

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
setup(
99
name="tsdb",
1010
version=__version__,
11-
description="TSDB (Time Series Data Beans): A Python Toolbox Helping Load Open-Source Time-Series Datasets",
11+
description="TSDB (Time Series Data Beans): a Python toolbox helping load open-source time-series datasets",
1212
long_description=README,
1313
long_description_content_type="text/markdown",
14-
license="GPL-3.0",
14+
license="BSD-3-Clause",
1515
author="Wenjie Du",
1616
author_email="[email protected]",
1717
url="https://github.com/WenjieDu/TSDB",
@@ -55,7 +55,7 @@
5555
"Intended Audience :: Developers",
5656
"Intended Audience :: Education",
5757
"Intended Audience :: Science/Research",
58-
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
58+
"License :: OSI Approved :: BSD License",
5959
"Operating System :: OS Independent",
6060
"Programming Language :: Python :: 3",
6161
"Topic :: Database",

tests/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
"""
44

55
# Created by Wenjie Du <[email protected]>
6-
# License: GLP-v3
6+
# License: BSD-3-Clause

tests/test_tsdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44

55
# Created by Wenjie Du <[email protected]>
6-
# License: GLP-v3
6+
# License: BSD-3-Clause
77

88
import os
99
import unittest

tsdb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44

55
# Created by Wenjie Du <[email protected]>
6-
# License: GLP-v3
6+
# License: BSD-3-Clause
77

88
# TSDB version
99
#

tsdb/data_processing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44

55
# Created by Wenjie Du <[email protected]>
6-
# License: GPL-v3
6+
# License: BSD-3-Clause
77

88
import os
99
import shutil

tsdb/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44

55
# Created by Wenjie Du <[email protected]>
6-
# License: GLP-v3
6+
# License: BSD-3-Clause
77

88
import os
99

0 commit comments

Comments
 (0)