skrecsys 0.1.0__tar.gz

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.
skrecsys-0.1.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Mark Andreev
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,77 @@
1
+ Metadata-Version: 2.4
2
+ Name: skrecsys
3
+ Version: 0.1.0
4
+ Summary: Recommender systems in the scikit-learn style
5
+ Keywords: recommender-systems,recsys,machine-learning,scikit-learn
6
+ Author: Mark Andreev
7
+ Author-email: Mark Andreev <mark.andreev@gmail.com>
8
+ License-Expression: MIT
9
+ License-File: LICENSE
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Classifier: Programming Language :: Python :: 3.14
17
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
18
+ Classifier: Typing :: Typed
19
+ Requires-Dist: pandas>=3.0.5
20
+ Requires-Python: >=3.14
21
+ Project-URL: Homepage, https://github.com/mrk-andreev/skrecsys
22
+ Project-URL: Repository, https://github.com/mrk-andreev/skrecsys
23
+ Project-URL: Issues, https://github.com/mrk-andreev/skrecsys/issues
24
+ Description-Content-Type: text/markdown
25
+
26
+ # skrecsys
27
+
28
+ [![PyPI](https://img.shields.io/pypi/v/skrecsys)](https://pypi.org/project/skrecsys/)
29
+ [![Python](https://img.shields.io/pypi/pyversions/skrecsys)](https://pypi.org/project/skrecsys/)
30
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
31
+
32
+ Recommender systems in the scikit-learn style, built on pandas.
33
+
34
+ > **Status:** early alpha — the API is not stable yet.
35
+
36
+ ## Installation
37
+
38
+ ```sh
39
+ pip install skrecsys
40
+ ```
41
+
42
+ or with [uv](https://docs.astral.sh/uv/):
43
+
44
+ ```sh
45
+ uv add skrecsys
46
+ ```
47
+
48
+ Requires Python 3.14+.
49
+
50
+ ## Usage
51
+
52
+ ```python
53
+ import skrecsys
54
+
55
+ print(skrecsys.__version__)
56
+ ```
57
+
58
+ ## Development
59
+
60
+ ```sh
61
+ git clone https://github.com/mrk-andreev/skrecsys.git
62
+ cd skrecsys
63
+ uv sync
64
+ uv run pytest
65
+ uv run ruff check
66
+ uv run ty check
67
+ ```
68
+
69
+ ## Releasing
70
+
71
+ 1. Bump the version: `uv version --bump patch` (or `minor` / `major`).
72
+ 2. Commit, then tag and push: `git tag v$(uv version --short) && git push --tags`.
73
+ 3. The `Release` GitHub Actions workflow builds and publishes to PyPI via Trusted Publishing.
74
+
75
+ ## License
76
+
77
+ [MIT](LICENSE)
@@ -0,0 +1,52 @@
1
+ # skrecsys
2
+
3
+ [![PyPI](https://img.shields.io/pypi/v/skrecsys)](https://pypi.org/project/skrecsys/)
4
+ [![Python](https://img.shields.io/pypi/pyversions/skrecsys)](https://pypi.org/project/skrecsys/)
5
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
6
+
7
+ Recommender systems in the scikit-learn style, built on pandas.
8
+
9
+ > **Status:** early alpha — the API is not stable yet.
10
+
11
+ ## Installation
12
+
13
+ ```sh
14
+ pip install skrecsys
15
+ ```
16
+
17
+ or with [uv](https://docs.astral.sh/uv/):
18
+
19
+ ```sh
20
+ uv add skrecsys
21
+ ```
22
+
23
+ Requires Python 3.14+.
24
+
25
+ ## Usage
26
+
27
+ ```python
28
+ import skrecsys
29
+
30
+ print(skrecsys.__version__)
31
+ ```
32
+
33
+ ## Development
34
+
35
+ ```sh
36
+ git clone https://github.com/mrk-andreev/skrecsys.git
37
+ cd skrecsys
38
+ uv sync
39
+ uv run pytest
40
+ uv run ruff check
41
+ uv run ty check
42
+ ```
43
+
44
+ ## Releasing
45
+
46
+ 1. Bump the version: `uv version --bump patch` (or `minor` / `major`).
47
+ 2. Commit, then tag and push: `git tag v$(uv version --short) && git push --tags`.
48
+ 3. The `Release` GitHub Actions workflow builds and publishes to PyPI via Trusted Publishing.
49
+
50
+ ## License
51
+
52
+ [MIT](LICENSE)
@@ -0,0 +1,111 @@
1
+ [project]
2
+ name = "skrecsys"
3
+ version = "0.1.0"
4
+ description = "Recommender systems in the scikit-learn style"
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ license-files = ["LICENSE"]
8
+ requires-python = ">=3.14"
9
+ keywords = [
10
+ "recommender-systems",
11
+ "recsys",
12
+ "machine-learning",
13
+ "scikit-learn",
14
+ ]
15
+ classifiers = [
16
+ "Development Status :: 3 - Alpha",
17
+ "Intended Audience :: Science/Research",
18
+ "Intended Audience :: Developers",
19
+ "Operating System :: OS Independent",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3 :: Only",
22
+ "Programming Language :: Python :: 3.14",
23
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
24
+ "Typing :: Typed",
25
+ ]
26
+ dependencies = ["pandas>=3.0.5"]
27
+
28
+ [[project.authors]]
29
+ name = "Mark Andreev"
30
+ email = "mark.andreev@gmail.com"
31
+
32
+ [project.urls]
33
+ Homepage = "https://github.com/mrk-andreev/skrecsys"
34
+ Repository = "https://github.com/mrk-andreev/skrecsys"
35
+ Issues = "https://github.com/mrk-andreev/skrecsys/issues"
36
+
37
+ [build-system]
38
+ requires = ["uv_build>=0.12.13,<0.13.0"]
39
+ build-backend = "uv_build"
40
+
41
+ [dependency-groups]
42
+ dev = [
43
+ "pandas-stubs>=3.0.5.260730",
44
+ "pre-commit>=4.6.2",
45
+ "pytest>=9.1.1",
46
+ "pytest-cov>=7.1.0",
47
+ "ruff>=0.16.6",
48
+ "ty>=0.0.78",
49
+ ]
50
+
51
+ [tool.ruff]
52
+ line-length = 100
53
+ target-version = "py314"
54
+
55
+ [tool.ruff.lint]
56
+ select = [
57
+ "E",
58
+ "W",
59
+ "F",
60
+ "I",
61
+ "UP",
62
+ "B",
63
+ "C4",
64
+ "SIM",
65
+ "PYI",
66
+ "ERA",
67
+ "RUF",
68
+ "YTT",
69
+ "S",
70
+ "BLE",
71
+ "FBT",
72
+ "A",
73
+ "T20",
74
+ "PTH",
75
+ "FLY",
76
+ "C90",
77
+ "NPY",
78
+ "PD",
79
+ "N",
80
+ "PERF",
81
+ "PGH",
82
+ "PL",
83
+ "PLC",
84
+ "PLE",
85
+ "PLR",
86
+ "PLW",
87
+ "FURB",
88
+ "RUF",
89
+ ]
90
+
91
+ [tool.ruff.lint.per-file-ignores]
92
+ "tests/**" = ["S101"]
93
+
94
+ [tool.ruff.lint.pylint]
95
+ max-args = 15
96
+
97
+ [tool.ty.environment]
98
+ python-version = "3.14"
99
+
100
+ [tool.ty.src]
101
+ include = [
102
+ "src",
103
+ "tests",
104
+ ]
105
+
106
+ [tool.ty.rules]
107
+ all = "error"
108
+
109
+ [tool.pytest.ini_options]
110
+ addopts = "--cov=skrecsys --cov-report=term-missing"
111
+ testpaths = ["tests"]
@@ -0,0 +1,104 @@
1
+ [project]
2
+ name = "skrecsys"
3
+ version = "0.1.0"
4
+ description = "Recommender systems in the scikit-learn style"
5
+ readme = "README.md"
6
+ license = "MIT"
7
+ license-files = ["LICENSE"]
8
+ authors = [
9
+ { name = "Mark Andreev", email = "mark.andreev@gmail.com" }
10
+ ]
11
+ requires-python = ">=3.14"
12
+ keywords = ["recommender-systems", "recsys", "machine-learning", "scikit-learn"]
13
+ classifiers = [
14
+ "Development Status :: 3 - Alpha",
15
+ "Intended Audience :: Science/Research",
16
+ "Intended Audience :: Developers",
17
+ "Operating System :: OS Independent",
18
+ "Programming Language :: Python :: 3",
19
+ "Programming Language :: Python :: 3 :: Only",
20
+ "Programming Language :: Python :: 3.14",
21
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
22
+ "Typing :: Typed",
23
+ ]
24
+ dependencies = [
25
+ "pandas>=3.0.5",
26
+ ]
27
+
28
+ [project.urls]
29
+ Homepage = "https://github.com/mrk-andreev/skrecsys"
30
+ Repository = "https://github.com/mrk-andreev/skrecsys"
31
+ Issues = "https://github.com/mrk-andreev/skrecsys/issues"
32
+
33
+ [build-system]
34
+ requires = ["uv_build>=0.12.13,<0.13.0"]
35
+ build-backend = "uv_build"
36
+
37
+ [dependency-groups]
38
+ dev = [
39
+ "pandas-stubs>=3.0.5.260730",
40
+ "pre-commit>=4.6.2",
41
+ "pytest>=9.1.1",
42
+ "pytest-cov>=7.1.0",
43
+ "ruff>=0.16.6",
44
+ "ty>=0.0.78",
45
+ ]
46
+
47
+ [tool.ruff]
48
+ line-length = 100
49
+ target-version = "py314"
50
+
51
+ [tool.ruff.lint]
52
+ select = [
53
+ "E", # pycodestyle errors
54
+ "W", # pycodestyle warnings
55
+ "F", # pyflakes
56
+ "I", # isort
57
+ "UP", # pyupgrade
58
+ "B", # flake8-bugbear
59
+ "C4", # flake8-comprehensions
60
+ "SIM", # flake8-simplify
61
+ "PYI", # flake8-pyi
62
+ "ERA", # eradicate (commented-out code)
63
+ "RUF", # ruff-specific rules
64
+ "YTT", # flake8-2020
65
+ "S", # flake8-bandit
66
+ "BLE", # flake8-blind-except
67
+ "FBT", # flake8-boolean-trap
68
+ "A", # flake8-builtins
69
+ "T20", # flake8-print
70
+ "PTH", # flake8-use-pathlib
71
+ "FLY", # flynt
72
+ "C90", # mccabe
73
+ "NPY", # NumPy-specific rules
74
+ "PD", # pandas-vet
75
+ "N", # pep8-naming
76
+ "PERF", # Perflint
77
+ "PGH", # pygrep-hooks
78
+ "PL", # Pylint
79
+ "PLC", # Convention
80
+ "PLE", # Error
81
+ "PLR", # Refactor
82
+ "PLW", # Warning
83
+ "FURB", # refurb
84
+ "RUF", # Ruff-specific rules
85
+ ]
86
+
87
+ [tool.ruff.lint.per-file-ignores]
88
+ "tests/**" = ["S101"] # assert is idiomatic in pytest
89
+
90
+ [tool.ruff.lint.pylint]
91
+ max-args = 15
92
+
93
+ [tool.ty.environment]
94
+ python-version = "3.14"
95
+
96
+ [tool.ty.src]
97
+ include = ["src", "tests"]
98
+
99
+ [tool.ty.rules]
100
+ all = "error"
101
+
102
+ [tool.pytest.ini_options]
103
+ addopts = "--cov=skrecsys --cov-report=term-missing"
104
+ testpaths = ["tests"]
@@ -0,0 +1,3 @@
1
+ from importlib.metadata import version
2
+
3
+ __version__ = version("skrecsys")
File without changes