gsppy 2.2.0__py3-none-any.whl → 2.3.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.2.0.dist-info → gsppy-2.3.0.dist-info}/METADATA +25 -11
- gsppy-2.3.0.dist-info/RECORD +9 -0
- {gsppy-2.2.0.dist-info → gsppy-2.3.0.dist-info}/licenses/LICENSE +1 -1
- gsppy-2.2.0.dist-info/RECORD +0 -9
- {gsppy-2.2.0.dist-info → gsppy-2.3.0.dist-info}/WHEEL +0 -0
- {gsppy-2.2.0.dist-info → gsppy-2.3.0.dist-info}/entry_points.txt +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gsppy
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.3.0
|
|
4
4
|
Summary: GSP (Generalized Sequence Pattern) algorithm in Python
|
|
5
5
|
Project-URL: Homepage, https://github.com/jacksonpradolima/gsp-py
|
|
6
6
|
Author-email: Jackson Antonio do Prado Lima <jacksonpradolima@gmail.com>
|
|
7
7
|
Maintainer-email: Jackson Antonio do Prado Lima <jacksonpradolima@gmail.com>
|
|
8
8
|
License: MIT License
|
|
9
9
|
|
|
10
|
-
Copyright (c)
|
|
10
|
+
Copyright (c) 2025 Jackson Antonio do Prado Lima
|
|
11
11
|
|
|
12
12
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
13
13
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -45,13 +45,13 @@ Provides-Extra: dev
|
|
|
45
45
|
Requires-Dist: cython==3.0.11; extra == 'dev'
|
|
46
46
|
Requires-Dist: hatch==1.14.0; extra == 'dev'
|
|
47
47
|
Requires-Dist: hatchling==1.27.0; extra == 'dev'
|
|
48
|
-
Requires-Dist: mypy==1.14.
|
|
48
|
+
Requires-Dist: mypy==1.14.1; extra == 'dev'
|
|
49
49
|
Requires-Dist: pylint==3.3.3; extra == 'dev'
|
|
50
50
|
Requires-Dist: pyright==1.1.391; extra == 'dev'
|
|
51
51
|
Requires-Dist: pytest-benchmark==5.1.0; extra == 'dev'
|
|
52
52
|
Requires-Dist: pytest-cov==6.0.0; extra == 'dev'
|
|
53
53
|
Requires-Dist: pytest==8.3.4; extra == 'dev'
|
|
54
|
-
Requires-Dist: ruff==0.8.
|
|
54
|
+
Requires-Dist: ruff==0.8.5; extra == 'dev'
|
|
55
55
|
Requires-Dist: tox==4.23.2; extra == 'dev'
|
|
56
56
|
Description-Content-Type: text/markdown
|
|
57
57
|
|
|
@@ -130,12 +130,17 @@ GSP-Py can be easily installed from either the **repository** or PyPI.
|
|
|
130
130
|
|
|
131
131
|
### Option 1: Clone the Repository
|
|
132
132
|
|
|
133
|
-
To manually clone the repository and
|
|
133
|
+
To manually clone the repository and set up the environment:
|
|
134
134
|
|
|
135
135
|
```bash
|
|
136
136
|
git clone https://github.com/jacksonpradolima/gsp-py.git
|
|
137
137
|
cd gsp-py
|
|
138
|
-
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
Refer to the [Developer Installation](#developer-installation) section and run:
|
|
141
|
+
|
|
142
|
+
```bash
|
|
143
|
+
rye sync
|
|
139
144
|
```
|
|
140
145
|
|
|
141
146
|
### Option 2: Install via `pip`
|
|
@@ -181,10 +186,12 @@ rye sync
|
|
|
181
186
|
#### 3. Use Rye Scripts
|
|
182
187
|
Once the environment is set up, you can run the following commands to simplify project tasks:
|
|
183
188
|
|
|
184
|
-
- Run tests: `rye run test`
|
|
189
|
+
- Run tests (in parallel): `rye run test`
|
|
185
190
|
- Format code: `rye run format`
|
|
186
191
|
- Lint code: `rye run lint`
|
|
187
192
|
- Type-check: `rye run typecheck`
|
|
193
|
+
- Add new dependencies: `rye add <package-name>`
|
|
194
|
+
- Add new dependency to dev dependencies: `rye add --dev <package-name>`
|
|
188
195
|
|
|
189
196
|
#### Notes
|
|
190
197
|
- Rye automatically reads dependencies and scripts from the `pyproject.toml` file.
|
|
@@ -294,13 +301,20 @@ improvement? [Open a discussion or issue!](https://github.com/jacksonpradolima/g
|
|
|
294
301
|
We welcome contributions from the community! If you'd like to help improve GSP-Py, read
|
|
295
302
|
our [CONTRIBUTING.md](CONTRIBUTING.md) guide to get started.
|
|
296
303
|
|
|
297
|
-
Development dependencies (e.g., testing and linting tools) are
|
|
298
|
-
these dependencies, run:
|
|
304
|
+
Development dependencies (e.g., testing and linting tools) are automatically managed using Rye. To install
|
|
305
|
+
these dependencies and set up the environment, run:
|
|
299
306
|
|
|
300
307
|
```bash
|
|
301
|
-
|
|
308
|
+
rye sync
|
|
302
309
|
```
|
|
303
310
|
|
|
311
|
+
After syncing, you can run the following scripts using Rye for development tasks:
|
|
312
|
+
|
|
313
|
+
- Run tests (in parallel): `rye run test`
|
|
314
|
+
- Lint code: `rye run lint`
|
|
315
|
+
- Type-check: `rye run typecheck`
|
|
316
|
+
- Format code: `rye run format`
|
|
317
|
+
|
|
304
318
|
### General Steps:
|
|
305
319
|
|
|
306
320
|
1. Fork the repository.
|
|
@@ -328,7 +342,7 @@ If GSP-Py contributed to your research or project that led to a publication, we
|
|
|
328
342
|
author = {Prado Lima, Jackson Antonio do},
|
|
329
343
|
title = {{GSP-Py - Generalized Sequence Pattern algorithm in Python}},
|
|
330
344
|
month = Dec,
|
|
331
|
-
year =
|
|
345
|
+
year = 2025,
|
|
332
346
|
doi = {10.5281/zenodo.3333987},
|
|
333
347
|
url = {https://doi.org/10.5281/zenodo.3333987}
|
|
334
348
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
gsppy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
gsppy/cli.py,sha256=YxBL341LJzb6EN-RBkhW3o4ZCexOGiQXq_aRovKccA8,6790
|
|
3
|
+
gsppy/gsp.py,sha256=CUCC1W5GGlGbWkC_td0qDfnSJiuzbWoMapR0qciejw8,13800
|
|
4
|
+
gsppy/utils.py,sha256=gOT3USxmC0MrBnSHOQ8avxghWmjQe59hS4jNQ3eiENQ,3363
|
|
5
|
+
gsppy-2.3.0.dist-info/METADATA,sha256=bgEnT2H2FGQx_ha4Unqz40qVVu-IICaCkLJ0ppOwUgs,12941
|
|
6
|
+
gsppy-2.3.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
+
gsppy-2.3.0.dist-info/entry_points.txt,sha256=smvmcIWk424ARIGKOC_BM42hpT_SptKPcIeqs-8u8lM,41
|
|
8
|
+
gsppy-2.3.0.dist-info/licenses/LICENSE,sha256=AlXanKSqFzo_o-87gp3Qw3XzbmnfxYy7O0xJOcQGWJo,1086
|
|
9
|
+
gsppy-2.3.0.dist-info/RECORD,,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2025 Jackson Antonio do Prado Lima
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
gsppy-2.2.0.dist-info/RECORD
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
gsppy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
-
gsppy/cli.py,sha256=YxBL341LJzb6EN-RBkhW3o4ZCexOGiQXq_aRovKccA8,6790
|
|
3
|
-
gsppy/gsp.py,sha256=CUCC1W5GGlGbWkC_td0qDfnSJiuzbWoMapR0qciejw8,13800
|
|
4
|
-
gsppy/utils.py,sha256=gOT3USxmC0MrBnSHOQ8avxghWmjQe59hS4jNQ3eiENQ,3363
|
|
5
|
-
gsppy-2.2.0.dist-info/METADATA,sha256=1Y8LcuU7engLWoCWFIKRwRMNsgkAawnpvX6s1BoXP_8,12485
|
|
6
|
-
gsppy-2.2.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
7
|
-
gsppy-2.2.0.dist-info/entry_points.txt,sha256=smvmcIWk424ARIGKOC_BM42hpT_SptKPcIeqs-8u8lM,41
|
|
8
|
-
gsppy-2.2.0.dist-info/licenses/LICENSE,sha256=co1jy5VZd1wXOPdUC2uk1hn7zsBm6aJNgVmhPOZ47g8,1086
|
|
9
|
-
gsppy-2.2.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|