kececilayout 0.3.9__tar.gz → 0.4.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.
- {kececilayout-0.3.9/kececilayout.egg-info → kececilayout-0.4.0}/PKG-INFO +1 -1
- {kececilayout-0.3.9 → kececilayout-0.4.0}/kececilayout/__init__.py +6 -2
- {kececilayout-0.3.9 → kececilayout-0.4.0}/kececilayout/_version.py +2 -1
- {kececilayout-0.3.9 → kececilayout-0.4.0/kececilayout.egg-info}/PKG-INFO +1 -1
- {kececilayout-0.3.9 → kececilayout-0.4.0}/pyproject.toml +2 -1
- {kececilayout-0.3.9 → kececilayout-0.4.0}/LICENSE +0 -0
- {kececilayout-0.3.9 → kececilayout-0.4.0}/MANIFEST.in +0 -0
- {kececilayout-0.3.9 → kececilayout-0.4.0}/README.md +0 -0
- {kececilayout-0.3.9 → kececilayout-0.4.0}/kececilayout/kececi_layout.py +0 -0
- {kececilayout-0.3.9 → kececilayout-0.4.0}/kececilayout.egg-info/SOURCES.txt +0 -0
- {kececilayout-0.3.9 → kececilayout-0.4.0}/kececilayout.egg-info/dependency_links.txt +0 -0
- {kececilayout-0.3.9 → kececilayout-0.4.0}/kececilayout.egg-info/requires.txt +0 -0
- {kececilayout-0.3.9 → kececilayout-0.4.0}/kececilayout.egg-info/top_level.txt +0 -0
- {kececilayout-0.3.9 → kececilayout-0.4.0}/setup.cfg +0 -0
- {kececilayout-0.3.9 → kececilayout-0.4.0}/setup.py +0 -0
- {kececilayout-0.3.9 → kececilayout-0.4.0}/tests/test_sample.py +0 -0
|
@@ -10,7 +10,7 @@ import inspect
|
|
|
10
10
|
import warnings
|
|
11
11
|
|
|
12
12
|
# Paket sürüm numarası
|
|
13
|
-
__version__ = "0.
|
|
13
|
+
__version__ = "0.4.0"
|
|
14
14
|
|
|
15
15
|
# =============================================================================
|
|
16
16
|
# OTOMATİK İÇE AKTARMA VE __all__ OLUŞTURMA
|
|
@@ -26,7 +26,7 @@ from .kececi_layout import ( # Veya fonksiyonların bulunduğu asıl modül
|
|
|
26
26
|
draw_kececi,
|
|
27
27
|
_draw_internal, # Private fonksiyonu açıkça import edin
|
|
28
28
|
_kececi_layout_3d_helix,
|
|
29
|
-
|
|
29
|
+
kececi_layout_3d_helix_parametric,
|
|
30
30
|
kececi_layout_v4,
|
|
31
31
|
|
|
32
32
|
# Library-specific layout functions
|
|
@@ -79,6 +79,7 @@ __all__ = [
|
|
|
79
79
|
'draw_kececi',
|
|
80
80
|
'_draw_internal', # <- TESTLER İÇİN GEREKLİ
|
|
81
81
|
'_kececi_layout_3d_helix',
|
|
82
|
+
'kececi_layout_3d_helix_parametric',
|
|
82
83
|
|
|
83
84
|
# Utility functions
|
|
84
85
|
'find_max_node_id',
|
|
@@ -124,3 +125,6 @@ def old_function_placeholder():
|
|
|
124
125
|
# Eğer bu eski fonksiyonu da dışa aktarmak istiyorsanız, __all__ listesine ekleyin
|
|
125
126
|
# __all__.append('old_function_placeholder')
|
|
126
127
|
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _version.py
|
|
2
2
|
|
|
3
|
-
__version__ = "0.
|
|
3
|
+
__version__ = "0.4.0"
|
|
4
4
|
__license__ = "MIT"
|
|
5
5
|
__description__ = "A deterministic node placement algorithm used in graph visualization. In this layout, nodes are arranged sequentially along a defined primary axis. Each subsequent node is then alternately offset along a secondary, perpendicular axis, typically moving to one side of the primary axis and then the other. Often, the magnitude of this secondary offset increases as nodes progress along the primary axis, creating a characteristic zig-zag or serpentine pattern."
|
|
6
6
|
__author__ = "Mehmet Keçeci"
|
|
@@ -8,3 +8,4 @@ __url__ = "https://github.com/WhiteSymmetry/kececilayout"
|
|
|
8
8
|
__docs__ = "https://github.com/WhiteSymmetry/kececilayout" # Opsiyonel: Dokümantasyon linki
|
|
9
9
|
__dependencies__ = ["python>=3.10"] # Diğer bağımlılıkları da ekleyebilirsiniz
|
|
10
10
|
|
|
11
|
+
|
|
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
|