kececinumbers 0.0.0__py3-none-any.whl

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.
@@ -0,0 +1,119 @@
1
+ # __init__.py
2
+
3
+ """
4
+ Keçeci Numbers: A Comprehensive Framework for Number Sequence Analysis.
5
+
6
+ This package provides tools for generating, analyzing, and visualizing
7
+ 11 different types of Keçeci Number sequences, from standard integers
8
+ to complex algebraic structures like quaternions and neutrosophic numbers.
9
+
10
+ Bu dosya paketin başlangıç noktası olarak çalışır.
11
+ Alt modülleri yükler, sürüm bilgileri tanımlar ve geriye dönük uyumluluk için uyarılar sağlar.
12
+ """
13
+
14
+ from __future__ import annotations
15
+ import importlib
16
+ import os
17
+ import warnings
18
+
19
+ # if os.getenv("DEVELOPMENT") == "true":
20
+ # importlib.reload(kececinumbers) # F821 undefined name 'kececinumbers'
21
+
22
+ # Paket sürüm numarası
23
+ __version__ = "0.4.1"
24
+ __author__ = "Mehmet Keçeci"
25
+ __email__ = "mkececi@yaani.com"
26
+
27
+ # Public API exposed to users of the 'kececinumbers' package.
28
+ __all__ = [
29
+ # --- Custom Number Classes ---
30
+ 'NeutrosophicNumber',
31
+ 'NeutrosophicComplexNumber',
32
+ 'HyperrealNumber',
33
+ 'BicomplexNumber',
34
+ 'NeutrosophicBicomplexNumber',
35
+
36
+ # --- High-Level Functions ---
37
+ 'get_with_params',
38
+ 'get_interactive',
39
+ 'get_random_type',
40
+
41
+ # --- Core Generation and Analysis ---
42
+ 'unified_generator',
43
+ 'is_prime',
44
+ 'find_period',
45
+ 'find_kececi_prime_number',
46
+
47
+ # --- Visualization and Reporting ---
48
+ 'plot_numbers',
49
+ 'print_detailed_report',
50
+
51
+ # --- Type Constants ---
52
+ 'TYPE_POSITIVE_REAL',
53
+ 'TYPE_NEGATIVE_REAL',
54
+ 'TYPE_COMPLEX',
55
+ 'TYPE_FLOAT',
56
+ 'TYPE_RATIONAL',
57
+ 'TYPE_QUATERNION',
58
+ 'TYPE_NEUTROSOPHIC',
59
+ 'TYPE_NEUTROSOPHIC_COMPLEX',
60
+ 'TYPE_HYPERREAL',
61
+ 'TYPE_BICOMPLEX',
62
+ 'TYPE_NEUTROSOPHIC_BICOMPLEX'
63
+ ]
64
+
65
+ # Göreli modül içe aktarmaları
66
+ # F401 hatasını önlemek için sadece kullanacağınız şeyleri dışa aktarın
67
+ # Aksi halde linter'lar "imported but unused" uyarısı verir
68
+ try:
69
+ #from .kececinumbers import * # gerekirse burada belirli fonksiyonları seçmeli yapmak daha güvenlidir
70
+ #from . import kececinumbers # Modülün kendisine doğrudan erişim isteniyorsa
71
+ # Import the public API into the package's namespace.
72
+ from .kececinumbers import (
73
+ # Classes
74
+ NeutrosophicNumber,
75
+ NeutrosophicComplexNumber,
76
+ HyperrealNumber,
77
+ BicomplexNumber,
78
+ NeutrosophicBicomplexNumber,
79
+
80
+ # Functions
81
+ get_with_params,
82
+ get_interactive,
83
+ get_random_type,
84
+ unified_generator,
85
+ is_prime,
86
+ find_period,
87
+ find_kececi_prime_number,
88
+ plot_numbers,
89
+ print_detailed_report,
90
+
91
+ # Constants
92
+ TYPE_POSITIVE_REAL,
93
+ TYPE_NEGATIVE_REAL,
94
+ TYPE_COMPLEX,
95
+ TYPE_FLOAT,
96
+ TYPE_RATIONAL,
97
+ TYPE_QUATERNION,
98
+ TYPE_NEUTROSOPHIC,
99
+ TYPE_NEUTROSOPHIC_COMPLEX,
100
+ TYPE_HYPERREAL,
101
+ TYPE_BICOMPLEX,
102
+ TYPE_NEUTROSOPHIC_BICOMPLEX
103
+ )
104
+ except ImportError as e:
105
+ warnings.warn(f"Gerekli modül yüklenemedi: {e}", ImportWarning)
106
+
107
+ # Eski bir fonksiyonun yer tutucusu - gelecekte kaldırılacak
108
+ def eski_fonksiyon():
109
+ """
110
+ Kaldırılması planlanan eski bir fonksiyondur.
111
+ Lütfen alternatif fonksiyonları kullanın.
112
+ """
113
+ warnings.warn(
114
+ "eski_fonksiyon() artık kullanılmamaktadır ve gelecekte kaldırılacaktır. "
115
+ "Lütfen yeni alternatif fonksiyonları kullanın. "
116
+ "Keçeci numbers; Python 3.7-3.14 sürümlerinde sorunsuz çalışmalıdır.",
117
+ category=DeprecationWarning,
118
+ stacklevel=2
119
+ )
@@ -0,0 +1,9 @@
1
+ # _version.py
2
+
3
+ __version__ = "0.4.1"
4
+ __license__ = "MIT"
5
+ __description__ = "Keçeci Numbers: An Exploration of a Dynamic Sequence Across Diverse Number Sets."
6
+ __author__ = "Mehmet Keçeci"
7
+ __url__ = "https://github.com/WhiteSymmetry/kececinumbers"
8
+ __docs__ = "https://github.com/WhiteSymmetry/kececinumbers" # Opsiyonel: Dokümantasyon linki
9
+ __dependencies__ = ["python>=3.9"] # Diğer bağımlılıkları da ekleyebilirsiniz