kececilayout 0.2.9__tar.gz → 0.3.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.
@@ -1,42 +1,64 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: kececilayout
3
- Version: 0.2.9
4
- Summary: 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.
3
+ Version: 0.3.0
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
7
- Author-email: bilginomi@yaani.com
7
+ Author-email: Mehmet Keçeci <mkececi@yaani.com>
8
8
  Maintainer: Mehmet Keçeci
9
9
  Maintainer-email: bilginomi@yaani.com
10
- License: MIT
10
+ License: MIT License
11
+
12
+ Copyright (c) 2025 Mehmet Keçeci
13
+
14
+ Permission is hereby granted, free of charge, to any person obtaining a copy
15
+ of this software and associated documentation files (the "Software"), to deal
16
+ in the Software without restriction, including without limitation the rights
17
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18
+ copies of the Software, and to permit persons to whom the Software is
19
+ furnished to do so, subject to the following conditions:
20
+
21
+ The above copyright notice and this permission notice shall be included in all
22
+ copies or substantial portions of the Software.
23
+
24
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30
+ SOFTWARE.
31
+
32
+ Project-URL: Homepage, https://github.com/WhiteSymmetry/kececilayout
33
+ Project-URL: Bug Tracker, https://github.com/WhiteSymmetry/kececilayout/issues
11
34
  Classifier: Programming Language :: Python :: 3
12
35
  Classifier: License :: OSI Approved :: MIT License
13
36
  Classifier: Operating System :: OS Independent
14
- Requires-Python: >=3.9
37
+ Classifier: Intended Audience :: Science/Research
38
+ Classifier: Topic :: Scientific/Engineering :: Visualization
39
+ Requires-Python: >=3.10
15
40
  Description-Content-Type: text/markdown
16
41
  License-File: LICENSE
17
42
  Requires-Dist: networkx
43
+ Requires-Dist: matplotlib
18
44
  Requires-Dist: numpy
19
- Requires-Dist: pycairo
20
45
  Requires-Dist: cairocffi
21
- Provides-Extra: all
22
- Requires-Dist: igraph; extra == "all"
23
- Requires-Dist: networkit; extra == "all"
24
- Requires-Dist: rustworkx; extra == "all"
25
- Requires-Dist: graphillion; extra == "all"
46
+ Provides-Extra: test
47
+ Requires-Dist: pytest; extra == "test"
48
+ Requires-Dist: pytest-cov; extra == "test"
49
+ Requires-Dist: pytest-mock; extra == "test"
50
+ Requires-Dist: ruff; extra == "test"
51
+ Requires-Dist: igraph; extra == "test"
52
+ Requires-Dist: python-louvain; extra == "test"
53
+ Requires-Dist: rustworkx; extra == "test"
54
+ Requires-Dist: networkit; extra == "test"
55
+ Requires-Dist: graphillion; extra == "test"
26
56
  Dynamic: author
27
- Dynamic: author-email
28
- Dynamic: classifier
29
- Dynamic: description
30
- Dynamic: description-content-type
31
57
  Dynamic: home-page
32
- Dynamic: license
33
58
  Dynamic: license-file
34
59
  Dynamic: maintainer
35
60
  Dynamic: maintainer-email
36
- Dynamic: provides-extra
37
- Dynamic: requires-dist
38
61
  Dynamic: requires-python
39
- Dynamic: summary
40
62
 
41
63
  # KececiLayout
42
64
 
@@ -1,6 +1,6 @@
1
1
  # _version.py
2
2
 
3
- __version__ = "0.2.9"
3
+ __version__ = "0.3.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"
@@ -10,3 +10,4 @@ __dependencies__ = ["python>=3.9"] # Diğer bağımlılıkları da ekleyebilirs
10
10
 
11
11
 
12
12
 
13
+