kececilayout 0.3.3__tar.gz → 0.3.6__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kececilayout
3
- Version: 0.3.3
3
+ Version: 0.3.6
4
4
  Summary: Çeşitli graf kütüphaneleri için sıralı-zigzag yerleşimleri sağlayan bir Python paketi.
5
5
  Home-page: https://github.com/WhiteSymmetry/kececilayout
6
6
  Author: Mehmet Keçeci
@@ -10,7 +10,7 @@ import inspect
10
10
  import warnings
11
11
 
12
12
  # Paket sürüm numarası
13
- __version__ = "0.3.2"
13
+ __version__ = "0.3.6"
14
14
 
15
15
  # =============================================================================
16
16
  # OTOMATİK İÇE AKTARMA VE __all__ OLUŞTURMA
@@ -132,3 +132,7 @@ def old_function_placeholder():
132
132
 
133
133
 
134
134
 
135
+
136
+
137
+
138
+
@@ -1,10 +1,15 @@
1
1
  # _version.py
2
2
 
3
- __version__ = "0.3.2"
3
+ __version__ = "0.3.6"
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"
7
7
  __url__ = "https://github.com/WhiteSymmetry/kececilayout"
8
8
  __docs__ = "https://github.com/WhiteSymmetry/kececilayout" # Opsiyonel: Dokümantasyon linki
9
- __dependencies__ = ["python>=3.9"] # Diğer bağımlılıkları da ekleyebilirsiniz
9
+ __dependencies__ = ["python>=3.10"] # Diğer bağımlılıkları da ekleyebilirsiniz
10
+
11
+
12
+
13
+
14
+
10
15
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kececilayout
3
- Version: 0.3.3
3
+ Version: 0.3.6
4
4
  Summary: Çeşitli graf kütüphaneleri için sıralı-zigzag yerleşimleri sağlayan bir Python paketi.
5
5
  Home-page: https://github.com/WhiteSymmetry/kececilayout
6
6
  Author: Mehmet Keçeci
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
 
7
7
  [project]
8
8
  name = "kececilayout"
9
- version = "0.3.3"
9
+ version = "0.3.6"
10
10
 
11
11
  # Diğer proje bilgileri (isteğe bağlı ama tavsiye edilir)
12
12
  authors = [
@@ -58,3 +58,6 @@ test = [
58
58
 
59
59
 
60
60
 
61
+
62
+
63
+
@@ -8,6 +8,7 @@ graph type compatibility, error handling, and drawing function routing.
8
8
 
9
9
  import numpy as np
10
10
  import pytest
11
+ import sys
11
12
  from unittest.mock import patch
12
13
 
13
14
  # Import the module to be tested
@@ -254,3 +255,7 @@ class TestDrawingFunctions:
254
255
 
255
256
  # Çizim (drawing) parametreleri doğru aktarıldı mı?
256
257
  assert call_kwargs['node_size'] == 500
258
+
259
+ if __name__ == "__main__":
260
+ pytest.main([__file__]) # Testleri direkt çalıştırırsa
261
+ sys.exit(0)
File without changes
File without changes
File without changes
File without changes
File without changes