gsppy 2.0.1__py3-none-any.whl → 2.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {gsppy-2.0.1.dist-info → gsppy-2.1.0.dist-info}/METADATA +12 -10
- {gsppy-2.0.1.dist-info → gsppy-2.1.0.dist-info}/RECORD +6 -6
- {gsppy-2.0.1.dist-info → gsppy-2.1.0.dist-info}/LICENSE +0 -0
- {gsppy-2.0.1.dist-info → gsppy-2.1.0.dist-info}/WHEEL +0 -0
- {gsppy-2.0.1.dist-info → gsppy-2.1.0.dist-info}/entry_points.txt +0 -0
- {gsppy-2.0.1.dist-info → gsppy-2.1.0.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: gsppy
|
|
3
|
-
Version: 2.0
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: GSP (Generalized Sequence Pattern) algorithm in Python
|
|
5
5
|
Home-page: https://github.com/jacksonpradolima/gsp-py
|
|
6
6
|
Author: Jackson Antonio do Prado Lima
|
|
@@ -9,6 +9,9 @@ Maintainer: Jackson Antonio do Prado Lima
|
|
|
9
9
|
Maintainer-email: jacksonpradolima@gmail.com
|
|
10
10
|
License: MIT
|
|
11
11
|
Keywords: GSP,sequential patterns,data analysis,sequence mining
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
12
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
13
16
|
Classifier: Operating System :: OS Independent
|
|
14
17
|
Classifier: License :: OSI Approved :: MIT License
|
|
@@ -16,7 +19,7 @@ Classifier: Intended Audience :: Science/Research
|
|
|
16
19
|
Classifier: Topic :: Scientific/Engineering :: Information Analysis
|
|
17
20
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
18
21
|
Classifier: Natural Language :: English
|
|
19
|
-
Requires-Python: >=3.
|
|
22
|
+
Requires-Python: >=3.8
|
|
20
23
|
Description-Content-Type: text/markdown
|
|
21
24
|
License-File: LICENSE
|
|
22
25
|
Provides-Extra: dev
|
|
@@ -26,8 +29,8 @@ Requires-Dist: pytest-benchmark==5.1.0; extra == "dev"
|
|
|
26
29
|
Requires-Dist: pytest-cov==6.0.0; extra == "dev"
|
|
27
30
|
|
|
28
31
|
[]()
|
|
29
|
-

|
|
33
|
+
[](https://doi.org/10.5281/zenodo.3333987)
|
|
31
34
|
|
|
32
35
|
[](https://pypi.org/project/gsppy/)
|
|
33
36
|
[](https://sonarcloud.io/summary/new_code?id=jacksonpradolima_gsp-py)
|
|
@@ -41,6 +44,9 @@ Requires-Dist: pytest-cov==6.0.0; extra == "dev"
|
|
|
41
44
|
**GSP-Py**: A Python-powered library to mine sequential patterns in large datasets, based on the robust **Generalized
|
|
42
45
|
Sequence Pattern (GSP)** algorithm. Ideal for market basket analysis, temporal mining, and user journey discovery.
|
|
43
46
|
|
|
47
|
+
> [!IMPORTANT]
|
|
48
|
+
> GSP-Py is compatible with Python 3.8 and later versions!
|
|
49
|
+
|
|
44
50
|
---
|
|
45
51
|
|
|
46
52
|
## 📚 Table of Contents
|
|
@@ -89,10 +95,6 @@ sudo apt install python3
|
|
|
89
95
|
|
|
90
96
|
For package dependencies of GSP-Py, they will automatically be installed when using `pip`.
|
|
91
97
|
|
|
92
|
-
> [!IMPORTANT]
|
|
93
|
-
> GSP-Py is compatible with Python 3.11 and later versions.
|
|
94
|
-
> We didn't test it on Python 3.10 or earlier versions.
|
|
95
|
-
|
|
96
98
|
---
|
|
97
99
|
|
|
98
100
|
## 🚀 Installation
|
|
@@ -269,8 +271,8 @@ If GSP-Py contributed to your research or project that led to a publication, we
|
|
|
269
271
|
@misc{pradolima_gsppy,
|
|
270
272
|
author = {Prado Lima, Jackson Antonio do},
|
|
271
273
|
title = {{GSP-Py - Generalized Sequence Pattern algorithm in Python}},
|
|
272
|
-
month =
|
|
273
|
-
year =
|
|
274
|
+
month = Dec,
|
|
275
|
+
year = 2024,
|
|
274
276
|
doi = {10.5281/zenodo.3333987},
|
|
275
277
|
url = {https://doi.org/10.5281/zenodo.3333987}
|
|
276
278
|
}
|
|
@@ -6,9 +6,9 @@ gsppy/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
6
6
|
gsppy/tests/test_cli.py,sha256=HpzCiESyIA_wsCQh7NMlHbT4k3GQ72TU9J7rEdllP5I,11425
|
|
7
7
|
gsppy/tests/test_gsp.py,sha256=SnWw4hlp-F453zJGnWUHW3A9iqhPyUTYHrmGPH5fTm4,8794
|
|
8
8
|
gsppy/tests/test_utils.py,sha256=Z27IefPYSVKg-dGOmnUO9tvAcd5OQMDyKVq3HAy3XtQ,3697
|
|
9
|
-
gsppy-2.0.
|
|
10
|
-
gsppy-2.0.
|
|
11
|
-
gsppy-2.0.
|
|
12
|
-
gsppy-2.0.
|
|
13
|
-
gsppy-2.0.
|
|
14
|
-
gsppy-2.0.
|
|
9
|
+
gsppy-2.1.0.dist-info/LICENSE,sha256=co1jy5VZd1wXOPdUC2uk1hn7zsBm6aJNgVmhPOZ47g8,1086
|
|
10
|
+
gsppy-2.1.0.dist-info/METADATA,sha256=icNi2oENwovji0hXCbYq0jMc-FmgzQGGGipOw1LncnY,10028
|
|
11
|
+
gsppy-2.1.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
12
|
+
gsppy-2.1.0.dist-info/entry_points.txt,sha256=smvmcIWk424ARIGKOC_BM42hpT_SptKPcIeqs-8u8lM,41
|
|
13
|
+
gsppy-2.1.0.dist-info/top_level.txt,sha256=sovAgdiFF0V3Dz2pPAwAdIkHeR-ShUchyrH3q8qU120,6
|
|
14
|
+
gsppy-2.1.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|