kececinumbers 0.4.2__tar.gz → 0.4.4__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.
- {kececinumbers-0.4.2/kececinumbers.egg-info → kececinumbers-0.4.4}/PKG-INFO +2 -2
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/kececinumbers/__init__.py +4 -1
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/kececinumbers/_version.py +2 -2
- {kececinumbers-0.4.2 → kececinumbers-0.4.4/kececinumbers.egg-info}/PKG-INFO +2 -2
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/pyproject.toml +1 -1
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/setup.py +1 -1
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/LICENSE +0 -0
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/MANIFEST.in +0 -0
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/README.md +0 -0
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/kececinumbers/kececinumbers.py +0 -0
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/kececinumbers.egg-info/SOURCES.txt +0 -0
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/kececinumbers.egg-info/dependency_links.txt +0 -0
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/kececinumbers.egg-info/requires.txt +0 -0
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/kececinumbers.egg-info/top_level.txt +0 -0
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/setup.cfg +0 -0
- {kececinumbers-0.4.2 → kececinumbers-0.4.4}/tests/test_sample.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: kececinumbers
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.4
|
4
4
|
Summary: Keçeci Numbers: An Exploration of a Dynamic Sequence Across Diverse Number Sets
|
5
5
|
Home-page: https://github.com/WhiteSymmetry/kececinumbers
|
6
6
|
Author: Mehmet Keçeci
|
@@ -36,7 +36,7 @@ Classifier: License :: OSI Approved :: MIT License
|
|
36
36
|
Classifier: Operating System :: OS Independent
|
37
37
|
Classifier: Intended Audience :: Science/Research
|
38
38
|
Classifier: Topic :: Scientific/Engineering :: Visualization
|
39
|
-
Requires-Python: >=3.
|
39
|
+
Requires-Python: >=3.10
|
40
40
|
Description-Content-Type: text/markdown
|
41
41
|
License-File: LICENSE
|
42
42
|
Requires-Dist: numpy
|
@@ -12,6 +12,7 @@ Alt modülleri yükler, sürüm bilgileri tanımlar ve geriye dönük uyumluluk
|
|
12
12
|
"""
|
13
13
|
|
14
14
|
from __future__ import annotations
|
15
|
+
import inspect
|
15
16
|
import importlib
|
16
17
|
import os
|
17
18
|
import warnings
|
@@ -20,7 +21,7 @@ import warnings
|
|
20
21
|
# importlib.reload(kececinumbers) # F821 undefined name 'kececinumbers'
|
21
22
|
|
22
23
|
# Paket sürüm numarası
|
23
|
-
__version__ = "0.4.
|
24
|
+
__version__ = "0.4.4"
|
24
25
|
__author__ = "Mehmet Keçeci"
|
25
26
|
__email__ = "mkececi@yaani.com"
|
26
27
|
|
@@ -37,6 +38,7 @@ __all__ = [
|
|
37
38
|
'get_with_params',
|
38
39
|
'get_interactive',
|
39
40
|
'get_random_type',
|
41
|
+
'_get_integer_representation',
|
40
42
|
|
41
43
|
# --- Core Generation and Analysis ---
|
42
44
|
'unified_generator',
|
@@ -81,6 +83,7 @@ try:
|
|
81
83
|
get_with_params,
|
82
84
|
get_interactive,
|
83
85
|
get_random_type,
|
86
|
+
_get_integer_representation,
|
84
87
|
unified_generator,
|
85
88
|
is_prime,
|
86
89
|
find_period,
|
@@ -1,9 +1,9 @@
|
|
1
1
|
# _version.py
|
2
2
|
|
3
|
-
__version__ = "0.4.
|
3
|
+
__version__ = "0.4.4"
|
4
4
|
__license__ = "MIT"
|
5
5
|
__description__ = "Keçeci Numbers: An Exploration of a Dynamic Sequence Across Diverse Number Sets."
|
6
6
|
__author__ = "Mehmet Keçeci"
|
7
7
|
__url__ = "https://github.com/WhiteSymmetry/kececinumbers"
|
8
8
|
__docs__ = "https://github.com/WhiteSymmetry/kececinumbers" # Opsiyonel: Dokümantasyon linki
|
9
|
-
__dependencies__ = ["python>=3.
|
9
|
+
__dependencies__ = ["python>=3.10"] # Diğer bağımlılıkları da ekleyebilirsiniz
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: kececinumbers
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.4
|
4
4
|
Summary: Keçeci Numbers: An Exploration of a Dynamic Sequence Across Diverse Number Sets
|
5
5
|
Home-page: https://github.com/WhiteSymmetry/kececinumbers
|
6
6
|
Author: Mehmet Keçeci
|
@@ -36,7 +36,7 @@ Classifier: License :: OSI Approved :: MIT License
|
|
36
36
|
Classifier: Operating System :: OS Independent
|
37
37
|
Classifier: Intended Audience :: Science/Research
|
38
38
|
Classifier: Topic :: Scientific/Engineering :: Visualization
|
39
|
-
Requires-Python: >=3.
|
39
|
+
Requires-Python: >=3.10
|
40
40
|
Description-Content-Type: text/markdown
|
41
41
|
License-File: LICENSE
|
42
42
|
Requires-Dist: numpy
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|