kececilayout 0.3.0__tar.gz → 0.3.1__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.0
3
+ Version: 0.3.1
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
@@ -39,10 +39,10 @@ Classifier: Topic :: Scientific/Engineering :: Visualization
39
39
  Requires-Python: >=3.10
40
40
  Description-Content-Type: text/markdown
41
41
  License-File: LICENSE
42
+ Requires-Dist: cairocffi
42
43
  Requires-Dist: networkx
43
44
  Requires-Dist: matplotlib
44
45
  Requires-Dist: numpy
45
- Requires-Dist: cairocffi
46
46
  Provides-Extra: test
47
47
  Requires-Dist: pytest; extra == "test"
48
48
  Requires-Dist: pytest-cov; extra == "test"
@@ -10,7 +10,7 @@ import inspect
10
10
  import warnings
11
11
 
12
12
  # Paket sürüm numarası
13
- __version__ = "0.2.9"
13
+ __version__ = "0.3.1"
14
14
 
15
15
  # =============================================================================
16
16
  # OTOMATİK İÇE AKTARMA VE __all__ OLUŞTURMA
@@ -60,3 +60,5 @@ def old_function_placeholder():
60
60
 
61
61
 
62
62
 
63
+
64
+
@@ -1,13 +1,9 @@
1
1
  # _version.py
2
2
 
3
- __version__ = "0.3.0"
3
+ __version__ = "0.3.1"
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
9
  __dependencies__ = ["python>=3.9"] # Diğer bağımlılıkları da ekleyebilirsiniz
10
-
11
-
12
-
13
-
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kececilayout
3
- Version: 0.3.0
3
+ Version: 0.3.1
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
@@ -39,10 +39,10 @@ Classifier: Topic :: Scientific/Engineering :: Visualization
39
39
  Requires-Python: >=3.10
40
40
  Description-Content-Type: text/markdown
41
41
  License-File: LICENSE
42
+ Requires-Dist: cairocffi
42
43
  Requires-Dist: networkx
43
44
  Requires-Dist: matplotlib
44
45
  Requires-Dist: numpy
45
- Requires-Dist: cairocffi
46
46
  Provides-Extra: test
47
47
  Requires-Dist: pytest; extra == "test"
48
48
  Requires-Dist: pytest-cov; extra == "test"
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
6
6
 
7
7
  [project]
8
8
  name = "kececilayout"
9
- version = "0.3.0"
9
+ version = "0.3.1"
10
10
 
11
11
  # Diğer proje bilgileri (isteğe bağlı ama tavsiye edilir)
12
12
  authors = [
@@ -26,10 +26,10 @@ classifiers = [
26
26
 
27
27
  # Ana bağımlılıklarınız
28
28
  dependencies = [
29
+ "cairocffi",
29
30
  "networkx",
30
31
  "matplotlib",
31
32
  "numpy",
32
- "cairocffi"
33
33
  ]
34
34
 
35
35
  [project.optional-dependencies]
@@ -54,3 +54,5 @@ test = [
54
54
 
55
55
 
56
56
 
57
+
58
+
File without changes
File without changes
File without changes
@@ -1,7 +1,7 @@
1
+ cairocffi
1
2
  networkx
2
3
  matplotlib
3
4
  numpy
4
- cairocffi
5
5
 
6
6
  [test]
7
7
  pytest
File without changes
File without changes
@@ -6,8 +6,8 @@ This test suite uses pytest to verify the functionality of layout calculations,
6
6
  graph type compatibility, error handling, and drawing function routing.
7
7
  """
8
8
 
9
- import pytest
10
9
  import numpy as np
10
+ import pytest
11
11
 
12
12
  # Import the module to be tested
13
13
  # Assume the code is in a file named `kececilayout_lib.py` in the same directory