Skip to content

Commit

Permalink
Setup GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisCarpentier42 committed Oct 9, 2024
1 parent 6ce30a8 commit 5e86a55
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 175 deletions.
161 changes: 0 additions & 161 deletions .gitlab-ci.yml

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Welcome to ``PaTSEmb``, a fast and extendable Python package for creating a patt
of the time series. This is an embedding of the time series which contains information
about the typical shapes are occurring at which locations in the time series.
Below, we give a small example of how to do this, but be sure to check out the
[documentation](https://patsemb-u0143709-3a07c9d27a51b62b1b2bad2f623ad154a9a19db833f1f7.pages.gitlab.kuleuven.be/index.html)!
[documentation](https://PaTSEmb.readthedocs.io/)!

## Installation

Expand All @@ -19,7 +19,7 @@ pip install patsemb
```
If you want to mine frequent, sequential patterns, Java 1.7 or higher should also be
available on your machine. More information about installing ``PaTSEmb`` can be found
in the [documentation](https://patsemb-u0143709-3a07c9d27a51b62b1b2bad2f623ad154a9a19db833f1f7.pages.gitlab.kuleuven.be/getting_started/installation.html).
in the [documentation](https://PaTSEmb.readthedocs.io/en/stable/installation.html).

## Example

Expand Down
2 changes: 1 addition & 1 deletion docs/getting_started/examples.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ We will use this embedder throughout all examples.
)
..
The examples described below are also available in the `examples notebook <https://gitlab.kuleuven.be/m-group-campus-brugge/dtai_public/patsemb/-/blob/main/notebooks/examples.ipynb>`_!
The examples described below are also available in the `examples notebook <https://github.com/ML-KULeuven/PaTSEmb/blob/main/notebooks/examples.ipynb>`_!

.. _example-univariate-time-series:

Expand Down
14 changes: 7 additions & 7 deletions docs/getting_started/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,30 +18,30 @@ simply running the following command:
pip install patsemb
From GitLab
From GitHub
-----------

You can also install ``PaTSEmb`` directly from `GitLab <https://gitlab.kuleuven.be/m-group-campus-brugge/dtai_public/patsemb>`_.
You can also install ``PaTSEmb`` directly from `GitHub <https://github.com/ML-KULeuven/PaTSEmb>`_.
To install version ``X.Y.Z``, you can use the following command:

.. code-block:: bash
pip install git+https://gitlab.kuleuven.be/m-group-campus-brugge/dtai_public/patsemb[email protected]
pip install git+https://github.com/ML-KULeuven/PaTSEmb[email protected]
The `release page <https://gitlab.kuleuven.be/m-group-campus-brugge/dtai_public/patsemb/-/releases>`_ contains more
The `release page <https://github.com/ML-KULeuven/PaTSEmb/releases>`_ contains more
information regarding the different versions. It is also possible to install the
latest, *unreleased* version using the following command:

.. code-block:: bash
pip install git+https://gitlab.kuleuven.be/m-group-campus-brugge/dtai_public/patsemb.git
pip install git+https://github.com/ML-KULeuven/PaTSEmb.git
From source
-----------

It is also possible to install ``PaTSEmb`` directly from the source code. First, download
the source from `GitLab <https://gitlab.kuleuven.be/m-group-campus-brugge/dtai_public/patsemb>`_. It is also
possible to download the source code for a specific release on `the release page <https://gitlab.kuleuven.be/m-group-campus-brugge/dtai_public/patsemb/-/releases>`_.
the source from `GitHub <https://github.com/ML-KULeuven/PaTSEmb.git>`_. It is also
possible to download the source code for a specific release on `the release page <https://github.com/ML-KULeuven/PaTSEmb/releases>`_.
Unzip the files, and navigate to the root directory of the repository in the terminal.
Finally, ``PaTSEmb`` can be installed through the following command:

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Welcome to ``PaTSEmb``, a fast and extendable Python package for creating a patt
of the time series. This is an embedding of the time series which contains information
about the typical shapes are occurring at which locations in the time series.

The source is available on `GitLab <https://gitlab.kuleuven.be/m-group-campus-brugge/dtai_public/patsemb>`_.
The source is available on `GitHub <https://github.com/ML-KULeuven/PaTSEmb>`_.

.. toctree::
:maxdepth: 1
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ file = "LICENSE"

[project.urls]
homepage = "https://pypi.org/project/patsemb/"
repository = "https://gitlab.kuleuven.be/m-group-campus-brugge/dtai_public/patsemb"
changelog = "https://gitlab.kuleuven.be/m-group-campus-brugge/dtai_public/patsemb/-/blob/main/CHANGELOG.md"
documentation = "https://patsemb-u0143709-3a07c9d27a51b62b1b2bad2f623ad154a9a19db833f1f7.pages.gitlab.kuleuven.be/"
repository = "https://github.com/ML-KULeuven/PaTSEmb"
changelog = "https://github.com/ML-KULeuven/PaTSEmb/blob/main/CHANGELOG.md"
documentation = "https://PaTSEmb.readthedocs.io/"

[build-system]
requires = ["setuptools", "wheel", "build"]
Expand Down

0 comments on commit 5e86a55

Please sign in to comment.