Skip to content

Commit

Permalink
feat: apply license BSD-3-Clause;
Browse files Browse the repository at this point in the history
  • Loading branch information
WenjieDu committed Nov 5, 2023
1 parent c9d1ae4 commit 9d5e0f8
Show file tree
Hide file tree
Showing 21 changed files with 50 additions and 696 deletions.
702 changes: 28 additions & 674 deletions LICENSE

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<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">
</a>
<a href="https://github.com/WenjieDu/TSDB/blob/main/LICENSE">
<img alt="GPL-v3 license" src="https://img.shields.io/badge/License-GPL--v3-E9BB41?logo=opensourceinitiative&logoColor=white">
<img alt="BSD-3 license" src="https://img.shields.io/badge/License-BSD--3-E9BB41?logo=opensourceinitiative&logoColor=white">
</a>
<a href='https://github.com/WenjieDu/TSDB/actions/workflows/testing_ci.yml'>
<img alt='GitHub Testing' src='https://img.shields.io/github/actions/workflow/status/wenjiedu/tsdb/testing_ci.yml?logo=github&color=C8D8E1&label=CI'>
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Welcome to TSDB documentation!
.. image:: https://img.shields.io/github/v/release/wenjiedu/tsdb?color=EE781F&include_prereleases&label=Release&logo=github&logoColor=white
:alt: the latest release version
:target: https://img.shields.io/github/v/release/wenjiedu/tsdb?color=EE781F&include_prereleases&label=Release&logo=github&logoColor=white
.. image:: https://img.shields.io/badge/License-GPL--v3-E9BB41?logo=opensourceinitiative&logoColor=white
.. image:: https://img.shields.io/badge/License-BSD--3-E9BB41?logo=opensourceinitiative&logoColor=white
:alt: License
:target: https://github.com/WenjieDu/TSDB/blob/main/LICENSE
.. image:: https://img.shields.io/github/actions/workflow/status/wenjiedu/tsdb/testing_ci.yml?logo=github&color=C8D8E1&label=CI
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This file stores some meta configurations for project PyPOTS.

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause

[flake8]
# People may argue that coding style is personal. This may be true if the project is personal and one works like a
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
setup(
name="tsdb",
version=__version__,
description="TSDB (Time Series Data Beans): A Python Toolbox Helping Load Open-Source Time-Series Datasets",
description="TSDB (Time Series Data Beans): a Python toolbox helping load open-source time-series datasets",
long_description=README,
long_description_content_type="text/markdown",
license="GPL-3.0",
license="BSD-3-Clause",
author="Wenjie Du",
author_email="wenjay.du@gmail.com",
url="https://github.com/WenjieDu/TSDB",
Expand Down Expand Up @@ -55,7 +55,7 @@
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Database",
Expand Down
2 changes: 1 addition & 1 deletion tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause
2 changes: 1 addition & 1 deletion tests/test_tsdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause

import os
import unittest
Expand Down
2 changes: 1 addition & 1 deletion tsdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause

# TSDB version
#
Expand Down
2 changes: 1 addition & 1 deletion tsdb/data_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GPL-v3
# License: BSD-3-Clause

import os
import shutil
Expand Down
2 changes: 1 addition & 1 deletion tsdb/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause

import os

Expand Down
2 changes: 1 addition & 1 deletion tsdb/loading_funcs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause

from tsdb.loading_funcs.beijing_multisite_air_quality import (
load_beijing_air_quality,
Expand Down
2 changes: 1 addition & 1 deletion tsdb/loading_funcs/beijing_multisite_air_quality.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause

import os

Expand Down
2 changes: 1 addition & 1 deletion tsdb/loading_funcs/electricity_load_diagrams.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause

import os

Expand Down
2 changes: 1 addition & 1 deletion tsdb/loading_funcs/physionet_2012.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause

import os

Expand Down
2 changes: 1 addition & 1 deletion tsdb/loading_funcs/physionet_2019.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause

import os

Expand Down
2 changes: 1 addition & 1 deletion tsdb/loading_funcs/ucr_uea_datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause

import os
import warnings
Expand Down
2 changes: 1 addition & 1 deletion tsdb/loading_funcs/vessel_ais.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# Created by Grgičević Luka <luka.grgicevic@ntnu.no>
# Modified by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause

import os
import time
Expand Down
2 changes: 1 addition & 1 deletion tsdb/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause
2 changes: 1 addition & 1 deletion tsdb/utils/downloading.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause

import os
import shutil
Expand Down
2 changes: 1 addition & 1 deletion tsdb/utils/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GLP-v3
# License: BSD-3-Clause


import os
Expand Down
2 changes: 1 addition & 1 deletion tsdb/utils/logging.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

# Created by Wenjie Du <wenjay.du@gmail.com>
# License: GPL-v3
# License: BSD-3

import logging
import os
Expand Down

0 comments on commit 9d5e0f8

Please sign in to comment.