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.
@@ -1,24 +1,16 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: onekit
3
- Version: 1.5.0
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.9
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
- Requires-Dist: pytz (>=2024.1,<2025.0)
19
- Requires-Dist: toolz (>=0.12.0,<0.13.0)
20
- Project-URL: Documentation, https://onekit.readthedocs.io/en/stable/
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.9+:
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
@@ -22,7 +22,7 @@ All-in-One Python Kit:
22
22
 
23
23
  ## Installation
24
24
 
25
- `onekit` is available on [PyPI](https://pypi.org/project/onekit/) for Python 3.9+:
25
+ `onekit` is available on [PyPI](https://pypi.org/project/onekit/) for Python 3.11+:
26
26
 
27
27
  ```console
28
28
  pip install onekit
@@ -1,29 +1,34 @@
1
- [tool.poetry]
1
+ [project]
2
2
  name = "onekit"
3
- version = "1.5.0"
3
+ dynamic = ["version"]
4
4
  description = "All-in-One Python Kit."
5
- authors = ["Eugen Stripling <estripling042@gmail.com>"]
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.dependencies]
20
- python = ">=3.9"
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.1.1"
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"
@@ -1,6 +1,6 @@
1
1
  from importlib import metadata
2
2
 
3
- __version__ = metadata.version("onekit")
3
+ __version__ = metadata.version(__name__)
4
4
 
5
5
 
6
6
  del metadata