kececilayout 0.4.7__tar.gz → 0.4.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.
- {kececilayout-0.4.7/kececilayout.egg-info → kececilayout-0.4.8}/PKG-INFO +1 -1
- {kececilayout-0.4.7 → kececilayout-0.4.8}/kececilayout/__init__.py +4 -3
- {kececilayout-0.4.7 → kececilayout-0.4.8}/kececilayout/_version.py +2 -1
- {kececilayout-0.4.7 → kececilayout-0.4.8/kececilayout.egg-info}/PKG-INFO +1 -1
- {kececilayout-0.4.7 → kececilayout-0.4.8}/pyproject.toml +2 -1
- {kececilayout-0.4.7 → kececilayout-0.4.8}/LICENSE +0 -0
- {kececilayout-0.4.7 → kececilayout-0.4.8}/MANIFEST.in +0 -0
- {kececilayout-0.4.7 → kececilayout-0.4.8}/README.md +0 -0
- {kececilayout-0.4.7 → kececilayout-0.4.8}/kececilayout/kececi_layout.py +0 -0
- {kececilayout-0.4.7 → kececilayout-0.4.8}/kececilayout.egg-info/SOURCES.txt +0 -0
- {kececilayout-0.4.7 → kececilayout-0.4.8}/kececilayout.egg-info/dependency_links.txt +0 -0
- {kececilayout-0.4.7 → kececilayout-0.4.8}/kececilayout.egg-info/requires.txt +0 -0
- {kececilayout-0.4.7 → kececilayout-0.4.8}/kececilayout.egg-info/top_level.txt +0 -0
- {kececilayout-0.4.7 → kececilayout-0.4.8}/setup.cfg +0 -0
- {kececilayout-0.4.7 → kececilayout-0.4.8}/setup.py +0 -0
- {kececilayout-0.4.7 → kececilayout-0.4.8}/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.4.
|
|
13
|
+
__version__ = "0.4.8"
|
|
14
14
|
|
|
15
15
|
# =============================================================================
|
|
16
16
|
# OTOMATİK İÇE AKTARMA VE __all__ OLUŞTURMA
|
|
@@ -41,7 +41,7 @@ from .kececi_layout import ( # Veya fonksiyonların bulunduğu asıl modül
|
|
|
41
41
|
kececi_layout_rx,
|
|
42
42
|
kececi_layout_rustworkx,
|
|
43
43
|
kececi_layout_gt,
|
|
44
|
-
|
|
44
|
+
kececi_layout_graph_tool,
|
|
45
45
|
kececi_layout_pure,
|
|
46
46
|
load_element_data_and_spectral_lines,
|
|
47
47
|
wavelength_to_rgb,
|
|
@@ -81,7 +81,7 @@ __all__ = [
|
|
|
81
81
|
'kececi_layout_rx',
|
|
82
82
|
'kececi_layout_rustworkx',
|
|
83
83
|
'kececi_layout_gt',
|
|
84
|
-
'
|
|
84
|
+
'kececi_layout_graph_tool',
|
|
85
85
|
'kececi_layout_pure',
|
|
86
86
|
'load_element_data_and_spectral_lines',
|
|
87
87
|
'wavelength_to_rgb',
|
|
@@ -138,3 +138,4 @@ def old_function_placeholder():
|
|
|
138
138
|
|
|
139
139
|
# Eğer bu eski fonksiyonu da dışa aktarmak istiyorsanız, __all__ listesine ekleyin
|
|
140
140
|
# __all__.append('old_function_placeholder')
|
|
141
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# _version.py
|
|
2
2
|
|
|
3
|
-
__version__ = "0.4.
|
|
3
|
+
__version__ = "0.4.8"
|
|
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
|
+
|
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "kececilayout"
|
|
9
|
-
version = "0.4.
|
|
9
|
+
version = "0.4.8"
|
|
10
10
|
|
|
11
11
|
# Diğer proje bilgileri (isteğe bağlı ama tavsiye edilir)
|
|
12
12
|
authors = [
|
|
@@ -73,3 +73,4 @@ configuration = "docs/conf.py" # Build konfigürasyonu belirtin
|
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
|
|
76
|
+
|
|
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
|