kececinumbers 0.3.7__tar.gz → 0.3.8__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.3.7/kececinumbers.egg-info → kececinumbers-0.3.8}/PKG-INFO +1 -1
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/kececinumbers/__init__.py +3 -1
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/kececinumbers/_version.py +1 -1
- {kececinumbers-0.3.7 → kececinumbers-0.3.8/kececinumbers.egg-info}/PKG-INFO +1 -1
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/setup.py +1 -1
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/LICENSE +0 -0
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/MANIFEST.in +0 -0
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/README.md +0 -0
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/kececinumbers/kececinumbers.py +0 -0
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/kececinumbers.egg-info/SOURCES.txt +0 -0
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/kececinumbers.egg-info/dependency_links.txt +0 -0
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/kececinumbers.egg-info/requires.txt +0 -0
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/kececinumbers.egg-info/top_level.txt +0 -0
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/pyproject.toml +0 -0
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/setup.cfg +0 -0
- {kececinumbers-0.3.7 → kececinumbers-0.3.8}/tests/test_sample.py +0 -0
@@ -20,7 +20,7 @@ import warnings
|
|
20
20
|
# importlib.reload(kececinumbers) # F821 undefined name 'kececinumbers'
|
21
21
|
|
22
22
|
# Paket sürüm numarası
|
23
|
-
__version__ = "0.3.
|
23
|
+
__version__ = "0.3.8"
|
24
24
|
__author__ = "Mehmet Keçeci"
|
25
25
|
__email__ = "mkececi@yaani.com"
|
26
26
|
|
@@ -41,6 +41,7 @@ __all__ = [
|
|
41
41
|
# --- Core Generation and Analysis ---
|
42
42
|
'unified_generator',
|
43
43
|
'is_prime',
|
44
|
+
'find_period',
|
44
45
|
'find_kececi_prime_number',
|
45
46
|
|
46
47
|
# --- Visualization and Reporting ---
|
@@ -82,6 +83,7 @@ try:
|
|
82
83
|
get_random_type,
|
83
84
|
unified_generator,
|
84
85
|
is_prime,
|
86
|
+
find_period,
|
85
87
|
find_kececi_prime_number,
|
86
88
|
plot_numbers,
|
87
89
|
print_detailed_report,
|
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
|
|
3
3
|
|
4
4
|
setup(
|
5
5
|
name="kececinumbers",
|
6
|
-
version="0.3.
|
6
|
+
version="0.3.8",
|
7
7
|
description="Keçeci Numbers: An Exploration of a Dynamic Sequence Across Diverse Number Sets",
|
8
8
|
long_description=open("README.md").read(),
|
9
9
|
long_description_content_type="text/markdown",
|
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
|
File without changes
|