onekit 1.5.0__tar.gz → 2.0.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.
- {onekit-1.5.0 → onekit-2.0.0}/PKG-INFO +7 -15
- {onekit-1.5.0 → onekit-2.0.0}/README.md +1 -1
- {onekit-1.5.0 → onekit-2.0.0}/pyproject.toml +22 -13
- {onekit-1.5.0 → onekit-2.0.0}/src/onekit/__init__.py +1 -1
- onekit-2.0.0/src/onekit/dekit.py +1051 -0
- {onekit-1.5.0 → onekit-2.0.0}/src/onekit/mathkit.py +14 -22
- {onekit-1.5.0 → onekit-2.0.0}/src/onekit/numpykit.py +40 -1
- {onekit-1.5.0 → onekit-2.0.0}/src/onekit/optfunckit.py +4 -8
- {onekit-1.5.0 → onekit-2.0.0}/src/onekit/pandaskit.py +94 -8
- {onekit-1.5.0 → onekit-2.0.0}/src/onekit/pythonkit.py +140 -115
- {onekit-1.5.0 → onekit-2.0.0}/src/onekit/sklearnkit.py +4 -9
- {onekit-1.5.0 → onekit-2.0.0}/src/onekit/sparkkit.py +375 -429
- {onekit-1.5.0 → onekit-2.0.0}/src/onekit/vizkit.py +25 -30
- {onekit-1.5.0 → onekit-2.0.0}/LICENSE +0 -0
|
@@ -1,24 +1,16 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: onekit
|
|
3
|
-
Version:
|
|
3
|
+
Version: 2.0.0
|
|
4
4
|
Summary: All-in-One Python Kit.
|
|
5
|
-
Home-page: https://github.com/estripling/onekit
|
|
6
5
|
License: BSD 3-Clause
|
|
7
6
|
Keywords: onekit
|
|
8
7
|
Author: Eugen Stripling
|
|
9
8
|
Author-email: estripling042@gmail.com
|
|
10
|
-
Requires-Python: >=3.
|
|
11
|
-
Classifier: License :: Other/Proprietary License
|
|
12
|
-
Classifier: Programming Language :: Python :: 3
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
14
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
9
|
+
Requires-Python: >=3.11
|
|
17
10
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
18
|
-
|
|
19
|
-
Requires-Dist:
|
|
20
|
-
|
|
21
|
-
Project-URL: Repository, https://github.com/estripling/onekit
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
12
|
+
Requires-Dist: pytz (>=2025.1,<2026.0)
|
|
13
|
+
Requires-Dist: toolz (>=1.0.0,<2.0.0)
|
|
22
14
|
Description-Content-Type: text/markdown
|
|
23
15
|
|
|
24
16
|
<p align="center">
|
|
@@ -45,7 +37,7 @@ All-in-One Python Kit:
|
|
|
45
37
|
|
|
46
38
|
## Installation
|
|
47
39
|
|
|
48
|
-
`onekit` is available on [PyPI](https://pypi.org/project/onekit/) for Python 3.
|
|
40
|
+
`onekit` is available on [PyPI](https://pypi.org/project/onekit/) for Python 3.11+:
|
|
49
41
|
|
|
50
42
|
```console
|
|
51
43
|
pip install onekit
|
|
@@ -1,29 +1,34 @@
|
|
|
1
|
-
[
|
|
1
|
+
[project]
|
|
2
2
|
name = "onekit"
|
|
3
|
-
|
|
3
|
+
dynamic = ["version"]
|
|
4
4
|
description = "All-in-One Python Kit."
|
|
5
|
-
authors = [
|
|
5
|
+
authors = [
|
|
6
|
+
{ name = "Eugen Stripling", email = "estripling042@gmail.com" },
|
|
7
|
+
]
|
|
6
8
|
license = "BSD 3-Clause"
|
|
7
9
|
readme = "README.md"
|
|
8
10
|
repository = "https://github.com/estripling/onekit"
|
|
9
11
|
documentation = "https://onekit.readthedocs.io/en/stable/"
|
|
10
12
|
keywords = ["onekit"]
|
|
13
|
+
packages = [
|
|
14
|
+
{ include = "onekit", from = "src" },
|
|
15
|
+
]
|
|
16
|
+
requires-python = ">=3.11"
|
|
17
|
+
dependencies = [
|
|
18
|
+
"toolz (>=1.0.0,<2.0.0)",
|
|
19
|
+
"pytz (>=2025.1,<2026.0)",
|
|
20
|
+
]
|
|
11
21
|
classifiers = [
|
|
12
22
|
"Programming Language :: Python :: 3 :: Only",
|
|
13
|
-
"Programming Language :: Python :: 3.9",
|
|
14
|
-
"Programming Language :: Python :: 3.10",
|
|
15
23
|
"Programming Language :: Python :: 3.11",
|
|
16
|
-
"Programming Language :: Python :: 3.12",
|
|
17
24
|
]
|
|
18
25
|
|
|
19
|
-
[tool.poetry
|
|
20
|
-
|
|
21
|
-
toolz = "^0.12.0"
|
|
22
|
-
pytz = "^2024.1"
|
|
26
|
+
[tool.poetry]
|
|
27
|
+
version = "2.0.0"
|
|
23
28
|
|
|
24
29
|
[tool.poetry.group.precommit.dependencies]
|
|
25
30
|
autoflake = "^2.2.1"
|
|
26
|
-
black = {extras = ["jupyter"], version = "^23.11.0"}
|
|
31
|
+
black = { extras = ["jupyter"], version = "^23.11.0" }
|
|
27
32
|
isort = "^5.12.0"
|
|
28
33
|
flake8 = ">=5.0.4"
|
|
29
34
|
pre-commit = "^3.5.0"
|
|
@@ -46,21 +51,25 @@ sphinx-copybutton = "^0.5.2"
|
|
|
46
51
|
[tool.poetry.group.packaging.dependencies]
|
|
47
52
|
python-semantic-release = "^8.3.0"
|
|
48
53
|
|
|
54
|
+
[tool.poetry.group.dekit.dependencies]
|
|
55
|
+
numpy = "1.26.4"
|
|
56
|
+
tqdm = "^4.67.1"
|
|
57
|
+
|
|
49
58
|
[tool.poetry.group.pandaskit.dependencies]
|
|
50
59
|
pandas = ">=0.23.2"
|
|
60
|
+
tabulate = "^0.9.0"
|
|
51
61
|
|
|
52
62
|
[tool.poetry.group.sklearnkit.dependencies]
|
|
53
63
|
scikit-learn = ">=1.3"
|
|
54
64
|
|
|
55
65
|
[tool.poetry.group.sparkkit.dependencies]
|
|
56
|
-
pyspark = "3.
|
|
66
|
+
pyspark = "3.5.3"
|
|
57
67
|
|
|
58
68
|
[tool.poetry.group.vizkit.dependencies]
|
|
59
69
|
matplotlib = ">=3.7.1"
|
|
60
70
|
|
|
61
71
|
[tool.black]
|
|
62
72
|
line-length = 88
|
|
63
|
-
target-version = ["py38"]
|
|
64
73
|
|
|
65
74
|
[tool.isort]
|
|
66
75
|
py_version = "auto"
|