kececilayout 0.5.7__tar.gz → 0.5.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.5.7/kececilayout.egg-info → kececilayout-0.5.8}/PKG-INFO +1 -1
- {kececilayout-0.5.7 → kececilayout-0.5.8}/kececilayout/__init__.py +2 -1
- {kececilayout-0.5.7 → kececilayout-0.5.8}/kececilayout/_version.py +2 -1
- {kececilayout-0.5.7 → kececilayout-0.5.8}/kececilayout/kececi_layout.py +4 -0
- {kececilayout-0.5.7 → kececilayout-0.5.8/kececilayout.egg-info}/PKG-INFO +1 -1
- {kececilayout-0.5.7 → kececilayout-0.5.8}/pyproject.toml +2 -1
- {kececilayout-0.5.7 → kececilayout-0.5.8}/tests/test_sample.py +2 -0
- {kececilayout-0.5.7 → kececilayout-0.5.8}/LICENSE +0 -0
- {kececilayout-0.5.7 → kececilayout-0.5.8}/MANIFEST.in +0 -0
- {kececilayout-0.5.7 → kececilayout-0.5.8}/README.md +0 -0
- {kececilayout-0.5.7 → kececilayout-0.5.8}/docs/conf.py +0 -0
- {kececilayout-0.5.7 → kececilayout-0.5.8}/kececilayout.egg-info/SOURCES.txt +0 -0
- {kececilayout-0.5.7 → kececilayout-0.5.8}/kececilayout.egg-info/dependency_links.txt +0 -0
- {kececilayout-0.5.7 → kececilayout-0.5.8}/kececilayout.egg-info/requires.txt +0 -0
- {kececilayout-0.5.7 → kececilayout-0.5.8}/kececilayout.egg-info/top_level.txt +0 -0
- {kececilayout-0.5.7 → kececilayout-0.5.8}/setup.cfg +0 -0
- {kececilayout-0.5.7 → kececilayout-0.5.8}/setup.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.5.
|
|
13
|
+
__version__ = "0.5.8"
|
|
14
14
|
|
|
15
15
|
# =============================================================================
|
|
16
16
|
# OTOMATİK İÇE AKTARMA VE __all__ OLUŞTURMA
|
|
@@ -182,3 +182,4 @@ def old_function_placeholder():
|
|
|
182
182
|
|
|
183
183
|
|
|
184
184
|
|
|
185
|
+
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
# _version.py
|
|
2
2
|
|
|
3
|
-
__version__ = "0.5.
|
|
3
|
+
__version__ = "0.5.8"
|
|
4
4
|
__license__ = "AGPL3.0-or-later"
|
|
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"
|
|
7
7
|
__url__ = "https://github.com/WhiteSymmetry/kececilayout"
|
|
8
8
|
__docs__ = "https://github.com/WhiteSymmetry/kececilayout" # Opsiyonel: Dokümantasyon linki
|
|
9
9
|
__dependencies__ = ["python>=3.11"] # Diğer bağımlılıkları da ekleyebilirsiniz
|
|
10
|
+
|
|
@@ -34,8 +34,10 @@ import networkit as nk
|
|
|
34
34
|
import networkx as nx
|
|
35
35
|
import numpy as np # rustworkx
|
|
36
36
|
from numba import jit
|
|
37
|
+
import os
|
|
37
38
|
import platform # graph_tool için
|
|
38
39
|
import random
|
|
40
|
+
import re
|
|
39
41
|
import rustworkx as rx
|
|
40
42
|
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
41
43
|
import warnings
|
|
@@ -2542,3 +2544,5 @@ if __name__ == '__main__':
|
|
|
2542
2544
|
|
|
2543
2545
|
|
|
2544
2546
|
|
|
2547
|
+
|
|
2548
|
+
|
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
|
|
|
6
6
|
|
|
7
7
|
[project]
|
|
8
8
|
name = "kececilayout"
|
|
9
|
-
version = "0.5.
|
|
9
|
+
version = "0.5.8"
|
|
10
10
|
|
|
11
11
|
# Diğer proje bilgileri (isteğe bağlı ama tavsiye edilir)
|
|
12
12
|
authors = [
|
|
@@ -79,3 +79,4 @@ configuration = "docs/conf.py" # Build konfigürasyonu belirtin
|
|
|
79
79
|
|
|
80
80
|
|
|
81
81
|
|
|
82
|
+
|
|
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
|