Python-EasyGraph 1.5__tar.gz → 1.5.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.
Files changed (350) hide show
  1. {python_easygraph-1.5/Python_EasyGraph.egg-info → python_easygraph-1.5.1}/PKG-INFO +9 -7
  2. {python_easygraph-1.5 → python_easygraph-1.5.1/Python_EasyGraph.egg-info}/PKG-INFO +9 -7
  3. {python_easygraph-1.5 → python_easygraph-1.5.1}/Python_EasyGraph.egg-info/requires.txt +1 -1
  4. {python_easygraph-1.5 → python_easygraph-1.5.1}/README.md +5 -4
  5. {python_easygraph-1.5 → python_easygraph-1.5.1}/pyproject.toml +1 -1
  6. {python_easygraph-1.5 → python_easygraph-1.5.1}/setup.py +4 -3
  7. {python_easygraph-1.5 → python_easygraph-1.5.1}/CMakeLists.txt +0 -0
  8. {python_easygraph-1.5 → python_easygraph-1.5.1}/LICENSE +0 -0
  9. {python_easygraph-1.5 → python_easygraph-1.5.1}/MANIFEST.in +0 -0
  10. {python_easygraph-1.5 → python_easygraph-1.5.1}/Python_EasyGraph.egg-info/SOURCES.txt +0 -0
  11. {python_easygraph-1.5 → python_easygraph-1.5.1}/Python_EasyGraph.egg-info/dependency_links.txt +0 -0
  12. {python_easygraph-1.5 → python_easygraph-1.5.1}/Python_EasyGraph.egg-info/top_level.txt +0 -0
  13. {python_easygraph-1.5 → python_easygraph-1.5.1}/README.rst +0 -0
  14. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/CMakeLists.txt +0 -0
  15. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/classes/__init__.h +0 -0
  16. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/classes/coo_graph.h +0 -0
  17. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/classes/csr_graph.h +0 -0
  18. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/classes/directed_graph.cpp +0 -0
  19. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/classes/directed_graph.h +0 -0
  20. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/classes/graph.cpp +0 -0
  21. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/classes/graph.h +0 -0
  22. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/classes/linkgraph.h +0 -0
  23. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/classes/operation.cpp +0 -0
  24. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/classes/operation.h +0 -0
  25. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/classes/segment_tree.cpp +0 -0
  26. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/common/common.cpp +0 -0
  27. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/common/common.h +0 -0
  28. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/common/utils.cpp +0 -0
  29. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/common/utils.h +0 -0
  30. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/cpp_easygraph.cpp +0 -0
  31. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/__init__.h +0 -0
  32. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/basic/__init__.h +0 -0
  33. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/basic/avg_degree.cpp +0 -0
  34. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/basic/avg_degree.h +0 -0
  35. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/basic/cluster.cpp +0 -0
  36. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/basic/cluster.h +0 -0
  37. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/centrality/__init__.h +0 -0
  38. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/centrality/betweenness.cpp +0 -0
  39. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/centrality/centrality.h +0 -0
  40. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/centrality/closeness.cpp +0 -0
  41. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/centrality/katz_centrality.cpp +0 -0
  42. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/components/__init__.h +0 -0
  43. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/components/biconnected.cpp +0 -0
  44. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/components/biconnected.h +0 -0
  45. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/components/connected.cpp +0 -0
  46. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/components/connected.h +0 -0
  47. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/components/strongly_connected.cpp +0 -0
  48. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/components/strongly_connected.h +0 -0
  49. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/cores/__init__.h +0 -0
  50. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/cores/k_cores.cpp +0 -0
  51. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/cores/k_cores.h +0 -0
  52. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/pagerank/__init__.h +0 -0
  53. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/pagerank/pagerank.cpp +0 -0
  54. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/pagerank/pagerank.h +0 -0
  55. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/path/__init__.h +0 -0
  56. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/path/mst.cpp +0 -0
  57. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/path/mst.h +0 -0
  58. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/path/path.cpp +0 -0
  59. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/path/path.h +0 -0
  60. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/structural_holes/__init__.h +0 -0
  61. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/structural_holes/evaluation.cpp +0 -0
  62. {python_easygraph-1.5 → python_easygraph-1.5.1}/cpp_easygraph/functions/structural_holes/evaluation.h +0 -0
  63. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/__init__.py +0 -0
  64. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/_global.py +0 -0
  65. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/__init__.py +0 -0
  66. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/base.py +0 -0
  67. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/directed_graph.py +0 -0
  68. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/directed_multigraph.py +0 -0
  69. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/graph.py +0 -0
  70. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/graphviews.py +0 -0
  71. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/hypergraph.py +0 -0
  72. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/multigraph.py +0 -0
  73. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/operation.py +0 -0
  74. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/test_base_graph_class.py +0 -0
  75. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/tests/__init__.py +0 -0
  76. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/tests/test_base.py +0 -0
  77. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/tests/test_directed_graph.py +0 -0
  78. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/tests/test_graph.py +0 -0
  79. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/tests/test_graphV2.py +0 -0
  80. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/tests/test_hypergraph.py +0 -0
  81. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/tests/test_multidigraph.py +0 -0
  82. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/tests/test_multigraph.py +0 -0
  83. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/classes/tests/test_operation.py +0 -0
  84. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/convert.py +0 -0
  85. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datapipe/__init__.py +0 -0
  86. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datapipe/common.py +0 -0
  87. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datapipe/loader.py +0 -0
  88. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datapipe/normalize.py +0 -0
  89. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/__init__.py +0 -0
  90. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/amazon_photo.py +0 -0
  91. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/arxiv.py +0 -0
  92. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/citation_graph.py +0 -0
  93. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/coauthor.py +0 -0
  94. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/dynamic/__init__.py +0 -0
  95. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/dynamic/email_enron.py +0 -0
  96. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/dynamic/email_eu.py +0 -0
  97. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/dynamic/hospital_lyon.py +0 -0
  98. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/dynamic/load_dataset.py +0 -0
  99. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/facebook_ego.py +0 -0
  100. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/flickr.py +0 -0
  101. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/get_sample_graph.py +0 -0
  102. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/github.py +0 -0
  103. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/gnn_benchmark.py +0 -0
  104. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/graph_dataset_base.py +0 -0
  105. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/House_Committees.py +0 -0
  106. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/Yelp.py +0 -0
  107. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/__init__.py +0 -0
  108. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/_global.py +0 -0
  109. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/cat_edge_Cooking.py +0 -0
  110. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/coauthorship.py +0 -0
  111. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/cocitation.py +0 -0
  112. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/contact_primary_school.py +0 -0
  113. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/cooking_200.py +0 -0
  114. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/hypergraph_dataset_base.py +0 -0
  115. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/loadDeepSetDatasets.py +0 -0
  116. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/mathoverflow_answers.py +0 -0
  117. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/senate_committees.py +0 -0
  118. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/trivago_clicks.py +0 -0
  119. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/hypergraph/walmart_trips.py +0 -0
  120. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/karate.py +0 -0
  121. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/ppi.py +0 -0
  122. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/reddit.py +0 -0
  123. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/roadnet.py +0 -0
  124. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/twitter_ego.py +0 -0
  125. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/utils.py +0 -0
  126. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/web_google.py +0 -0
  127. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/datasets/wiki_topcats.py +0 -0
  128. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/exception.py +0 -0
  129. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/experiments/__init__.py +0 -0
  130. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/experiments/base.py +0 -0
  131. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/experiments/hypergraphs/__init__.py +0 -0
  132. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/experiments/hypergraphs/hypergraph.py +0 -0
  133. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/experiments/vertex_classification.py +0 -0
  134. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/__init__.py +0 -0
  135. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/basic/__init__.py +0 -0
  136. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/basic/avg_degree.py +0 -0
  137. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/basic/cluster.py +0 -0
  138. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/basic/localassort.py +0 -0
  139. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/basic/predecessor_path_based.py +0 -0
  140. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/basic/tests/__init__.py +0 -0
  141. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/basic/tests/test_avg_degree.py +0 -0
  142. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/basic/tests/test_cluster.py +0 -0
  143. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/basic/tests/test_localassort.py +0 -0
  144. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/basic/tests/test_predecessor.py +0 -0
  145. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/__init__.py +0 -0
  146. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/betweenness.py +0 -0
  147. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/closeness.py +0 -0
  148. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/degree.py +0 -0
  149. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/ego_betweenness.py +0 -0
  150. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/flowbetweenness.py +0 -0
  151. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/katz_centrality.py +0 -0
  152. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/laplacian.py +0 -0
  153. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/pagerank.py +0 -0
  154. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/tests/__init__.py +0 -0
  155. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/tests/test_betweenness.py +0 -0
  156. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/tests/test_closeness.py +0 -0
  157. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/tests/test_degree.py +0 -0
  158. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/tests/test_egobetweenness.py +0 -0
  159. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/tests/test_flowbetweenness.py +0 -0
  160. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/tests/test_laplacian.py +0 -0
  161. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/centrality/tests/test_pagerank.py +0 -0
  162. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/LPA.py +0 -0
  163. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/__init__.py +0 -0
  164. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/ego_graph.py +0 -0
  165. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/louvain.py +0 -0
  166. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/modularity.py +0 -0
  167. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/modularity_max_detection.py +0 -0
  168. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/motif.py +0 -0
  169. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/tests/__init__.py +0 -0
  170. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/tests/test_LPA.py +0 -0
  171. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/tests/test_ego_graph.py +0 -0
  172. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/tests/test_louvian.py +0 -0
  173. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/tests/test_modularity.py +0 -0
  174. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/tests/test_modularity_max_detection.py +0 -0
  175. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/community/tests/test_motif.py +0 -0
  176. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/components/__init__.py +0 -0
  177. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/components/biconnected.py +0 -0
  178. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/components/connected.py +0 -0
  179. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/components/strongly_connected.py +0 -0
  180. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/components/tests/__init__.py +0 -0
  181. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/components/tests/test_biconnected.py +0 -0
  182. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/components/tests/test_connected.py +0 -0
  183. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/components/tests/test_strongly_connected.py +0 -0
  184. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/components/tests/test_weakly_connected.py +0 -0
  185. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/components/weakly_connected.py +0 -0
  186. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/core/__init__.py +0 -0
  187. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/core/k_core.py +0 -0
  188. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/core/tests/__init__.py +0 -0
  189. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/core/tests/test_k_core.py +0 -0
  190. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/__init__.py +0 -0
  191. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/defaults.py +0 -0
  192. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/drawing.py +0 -0
  193. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/geometry.py +0 -0
  194. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/layout.py +0 -0
  195. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/plot.py +0 -0
  196. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/positioning.py +0 -0
  197. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/simulator.py +0 -0
  198. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/tests/__init__.py +0 -0
  199. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/tests/test_drawing.py +0 -0
  200. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/tests/test_geometry.py +0 -0
  201. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/tests/test_plot.py +0 -0
  202. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/tests/test_positioning.py +0 -0
  203. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/drawing/utils.py +0 -0
  204. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_embedding/NOBE.py +0 -0
  205. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_embedding/__init__.py +0 -0
  206. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_embedding/deepwalk.py +0 -0
  207. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_embedding/line.py +0 -0
  208. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_embedding/net_emb_example_citeseer.py +0 -0
  209. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_embedding/node2vec.py +0 -0
  210. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_embedding/sdne.py +0 -0
  211. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_embedding/tests/__init__.py +0 -0
  212. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_embedding/tests/test_deepwalk.py +0 -0
  213. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_embedding/tests/test_line.py +0 -0
  214. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_embedding/tests/test_nobe.py +0 -0
  215. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_embedding/tests/test_node2vec.py +0 -0
  216. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_embedding/tests/test_sdne.py +0 -0
  217. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_generator/RandomNetwork.py +0 -0
  218. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_generator/__init__.py +0 -0
  219. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_generator/classic.py +0 -0
  220. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_generator/tests/__init__.py +0 -0
  221. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_generator/tests/test_Random_Network.py +0 -0
  222. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/graph_generator/tests/test_classic.py +0 -0
  223. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/__init__.py +0 -0
  224. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/assortativity.py +0 -0
  225. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/centrality/__init__.py +0 -0
  226. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/centrality/cycle_ratio.py +0 -0
  227. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/centrality/degree.py +0 -0
  228. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/centrality/hypercoreness.py +0 -0
  229. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/centrality/s_centrality.py +0 -0
  230. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/centrality/vector_centrality.py +0 -0
  231. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/hypergraph_clustering.py +0 -0
  232. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/hypergraph_operation.py +0 -0
  233. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/null_model/__init__.py +0 -0
  234. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/null_model/hypergraph_classic.py +0 -0
  235. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/null_model/lattice.py +0 -0
  236. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/null_model/random.py +0 -0
  237. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/null_model/simple.py +0 -0
  238. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/null_model/tests/__init__.py +0 -0
  239. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/null_model/tests/test_classic.py +0 -0
  240. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/null_model/tests/test_lattice.py +0 -0
  241. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/null_model/tests/test_simple.py +0 -0
  242. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/null_model/uniform.py +0 -0
  243. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/tests/__init__.py +0 -0
  244. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/tests/test_assortativity.py +0 -0
  245. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/tests/test_centrality.py +0 -0
  246. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/tests/test_hypergraph_clustering.py +0 -0
  247. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/hypergraph/tests/test_hypergraph_operation.py +0 -0
  248. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/isolate.py +0 -0
  249. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/path/__init__.py +0 -0
  250. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/path/average_shortest_path_length.py +0 -0
  251. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/path/bridges.py +0 -0
  252. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/path/diameter.py +0 -0
  253. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/path/mst.py +0 -0
  254. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/path/path.py +0 -0
  255. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/path/tests/__init__.py +0 -0
  256. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/path/tests/test_average_shortest_path_length.py +0 -0
  257. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/path/tests/test_bridges.py +0 -0
  258. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/path/tests/test_diameter.py +0 -0
  259. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/path/tests/test_mst.py +0 -0
  260. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/path/tests/test_path.py +0 -0
  261. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/structural_holes/AP_Greedy.py +0 -0
  262. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/structural_holes/HAM.py +0 -0
  263. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/structural_holes/HIS.py +0 -0
  264. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/structural_holes/ICC.py +0 -0
  265. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/structural_holes/MaxD.py +0 -0
  266. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/structural_holes/NOBE.py +0 -0
  267. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/structural_holes/SHII_metric.py +0 -0
  268. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/structural_holes/__init__.py +0 -0
  269. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/structural_holes/evaluation.py +0 -0
  270. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/structural_holes/maxBlock.py +0 -0
  271. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/structural_holes/metrics.py +0 -0
  272. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/structural_holes/weakTie.py +0 -0
  273. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/tests/__init__.py +0 -0
  274. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/functions/tests/test_isolate.py +0 -0
  275. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/ml_metrics/__init__.py +0 -0
  276. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/ml_metrics/base.py +0 -0
  277. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/ml_metrics/classification.py +0 -0
  278. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/ml_metrics/hypergraphs/__init__.py +0 -0
  279. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/ml_metrics/hypergraphs/hypergraph.py +0 -0
  280. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/model/__init__.py +0 -0
  281. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/model/hypergraphs/__init__.py +0 -0
  282. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/model/hypergraphs/dhcf.py +0 -0
  283. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/model/hypergraphs/dhne.py +0 -0
  284. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/model/hypergraphs/hgnn.py +0 -0
  285. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/model/hypergraphs/hgnnp.py +0 -0
  286. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/model/hypergraphs/hnhn.py +0 -0
  287. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/model/hypergraphs/hwnn.py +0 -0
  288. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/model/hypergraphs/hypergcn.py +0 -0
  289. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/model/hypergraphs/setgnn.py +0 -0
  290. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/model/hypergraphs/unignn.py +0 -0
  291. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/__init__.py +0 -0
  292. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/convs/__init__.py +0 -0
  293. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/convs/common.py +0 -0
  294. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/convs/hypergraphs/__init__.py +0 -0
  295. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/convs/hypergraphs/dhcf_conv.py +0 -0
  296. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/convs/hypergraphs/halfnlh_conv.py +0 -0
  297. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/convs/hypergraphs/hgnn_conv.py +0 -0
  298. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/convs/hypergraphs/hgnnp_conv.py +0 -0
  299. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/convs/hypergraphs/hnhn_conv.py +0 -0
  300. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/convs/hypergraphs/hwnn_conv.py +0 -0
  301. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/convs/hypergraphs/hypergcn_conv.py +0 -0
  302. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/convs/hypergraphs/unignn_conv.py +0 -0
  303. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/convs/pma.py +0 -0
  304. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/loss.py +0 -0
  305. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/regularization.py +0 -0
  306. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/tests/__init__.py +0 -0
  307. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/tests/test_gatconv.py +0 -0
  308. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/tests/test_gcnconv.py +0 -0
  309. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/tests/test_graphsageconv.py +0 -0
  310. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/nn/tests/test_regularization.py +0 -0
  311. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/__init__.py +0 -0
  312. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/edgelist.py +0 -0
  313. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/gexf.py +0 -0
  314. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/gml.py +0 -0
  315. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/graphml.py +0 -0
  316. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/graphviz.py +0 -0
  317. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/json_graph/__init__.py +0 -0
  318. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/json_graph/node_link.py +0 -0
  319. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/pajek.py +0 -0
  320. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/pickle.py +0 -0
  321. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/tests/__init__.py +0 -0
  322. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/tests/test_edgelist.py +0 -0
  323. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/tests/test_gexf.py +0 -0
  324. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/tests/test_gml.py +0 -0
  325. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/tests/test_graphml.py +0 -0
  326. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/tests/test_graphviz.py +0 -0
  327. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/tests/test_pajek.py +0 -0
  328. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/tests/test_pickle.py +0 -0
  329. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/tests/test_ucinet.py +0 -0
  330. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/readwrite/ucinet.py +0 -0
  331. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/tests/__init__.py +0 -0
  332. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/tests/script_test_cpp_easygraph.py +0 -0
  333. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/tests/teddy_test_cpp_easygraph_sanity_check.py +0 -0
  334. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/tests/test_convert.py +0 -0
  335. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/tests/test_cpp_easygraph.py +0 -0
  336. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/__init__.py +0 -0
  337. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/alias.py +0 -0
  338. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/convert_class.py +0 -0
  339. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/convert_to_matrix.py +0 -0
  340. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/decorators.py +0 -0
  341. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/download.py +0 -0
  342. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/exception.py +0 -0
  343. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/index_of_node.py +0 -0
  344. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/logging.py +0 -0
  345. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/mapped_queue.py +0 -0
  346. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/misc.py +0 -0
  347. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/relabel.py +0 -0
  348. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/sparse.py +0 -0
  349. {python_easygraph-1.5 → python_easygraph-1.5.1}/easygraph/utils/type_change.py +0 -0
  350. {python_easygraph-1.5 → python_easygraph-1.5.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Python-EasyGraph
3
- Version: 1.5
3
+ Version: 1.5.1
4
4
  Summary: Easy Graph
5
5
  Home-page: https://github.com/easy-graph/Easy-Graph
6
6
  Author: Fudan DataNET Group
@@ -11,13 +11,14 @@ Classifier: Programming Language :: Python :: 3.10
11
11
  Classifier: Programming Language :: Python :: 3.11
12
12
  Classifier: Programming Language :: Python :: 3.12
13
13
  Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Programming Language :: Python :: 3.14
14
15
  Classifier: License :: OSI Approved :: BSD License
15
16
  Classifier: Operating System :: OS Independent
16
- Requires-Python: >=3.8, <3.14
17
+ Requires-Python: >=3.8, <3.15
17
18
  Description-Content-Type: text/markdown
18
19
  License-File: LICENSE
19
20
  Requires-Dist: numpy>=1.23.1; python_version >= "3.10"
20
- Requires-Dist: numpy>=1.19.5; python_version >= "3.7" and python_version <= "3.13"
21
+ Requires-Dist: numpy>=1.19.5; python_version >= "3.7" and python_version <= "3.14"
21
22
  Requires-Dist: tqdm>=4.49.0
22
23
  Requires-Dist: joblib>=1.2.0
23
24
  Requires-Dist: six>=1.16.0
@@ -100,9 +101,10 @@ It bridges the gap between EasyGraph and higher-order relationships. EasyHypergr
100
101
  👉 For more details, please refer to its [documentation](https://easy-graph.github.io/docs/eggpu.html) page.
101
102
 
102
103
  # News
103
- - [06-29-2025] 🎉 Thanks to our amazing community! EasyGraph has reached 800,000 downloads!
104
- - [05-30-2025] 🎉 Our paper "EasyHypergraph: an open-source software for fast and memory-saving analysis and learning of higher-order networks" was accepted by Humanities and Social Sciences Communications (Nature Portfolio)!
105
- - [12-04-2024] 🎉 We received the "Top Open Source Certificate" by International Open Benchmark Council!
104
+ - [09-29-2025] 🎉 Thanks to our amazing community! EasyGraph has reached 900,000 downloads!
105
+ - [07-27-2025] 🎉 We released EasyGraph 1.5! This version integrates the HWNN model and supports 11 representative network datasets.
106
+ - [05-30-2025] 🎉 Our paper "EasyHypergraph: an open-source software for fast and memory-saving analysis and learning of higher-order networks" was accepted by Humanities and Social Sciences Communications (Nature Portfolio)! [[PDF](https://www.nature.com/articles/s41599-025-05180-5)]
107
+ - [12-04-2024] 🎉 We received the "Top Open Source Certificate" by International Open Benchmark Council! [[Certificate](https://chenyang03.wordpress.com/wp-content/uploads/2025/07/image.png?w=1024)]
106
108
  - [11-22-2024] We released EasyGraph 1.4.1! This version now fully supports Python 3.13.
107
109
  - [09-27-2024] 🎉 EasyGraph has reached 500,000 downloads!
108
110
  - [09-20-2024] We released EasyGraph 1.4! This version features GPU-powered functions for efficient large network analysis.
@@ -111,7 +113,7 @@ It bridges the gap between EasyGraph and higher-order relationships. EasyHypergr
111
113
  - [03-06-2024] 🎉 We received the Shanghai Open Source Innovation Outstanding Achievement Award (Grand Prize)! [News](https://news.fudan.edu.cn/2024/0401/c2463a139799/page.htm)
112
114
  - [02-05-2024] We released EasyGraph 1.1! This version features hypergraph analysis and learning for higher-order network modeling and representation.
113
115
  - [08-17-2023] We released EasyGraph 1.0!
114
- - [08-08-2023] 🎉 Our paper "EasyGraph: A Multifunctional, Cross-Platform, and Effective Library for Interdisciplinary Network Analysis" was accepted by Patterns (Cell Press)!
116
+ - [08-08-2023] 🎉 Our paper "EasyGraph: A Multifunctional, Cross-Platform, and Effective Library for Interdisciplinary Network Analysis" was accepted by Patterns (Cell Press)! [[PDF](https://www.sciencedirect.com/science/article/pii/S2666389923002180)]
115
117
  - [07-22-2020] First public release of EasyGraph!
116
118
 
117
119
  # Stargazers
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: Python-EasyGraph
3
- Version: 1.5
3
+ Version: 1.5.1
4
4
  Summary: Easy Graph
5
5
  Home-page: https://github.com/easy-graph/Easy-Graph
6
6
  Author: Fudan DataNET Group
@@ -11,13 +11,14 @@ Classifier: Programming Language :: Python :: 3.10
11
11
  Classifier: Programming Language :: Python :: 3.11
12
12
  Classifier: Programming Language :: Python :: 3.12
13
13
  Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Programming Language :: Python :: 3.14
14
15
  Classifier: License :: OSI Approved :: BSD License
15
16
  Classifier: Operating System :: OS Independent
16
- Requires-Python: >=3.8, <3.14
17
+ Requires-Python: >=3.8, <3.15
17
18
  Description-Content-Type: text/markdown
18
19
  License-File: LICENSE
19
20
  Requires-Dist: numpy>=1.23.1; python_version >= "3.10"
20
- Requires-Dist: numpy>=1.19.5; python_version >= "3.7" and python_version <= "3.13"
21
+ Requires-Dist: numpy>=1.19.5; python_version >= "3.7" and python_version <= "3.14"
21
22
  Requires-Dist: tqdm>=4.49.0
22
23
  Requires-Dist: joblib>=1.2.0
23
24
  Requires-Dist: six>=1.16.0
@@ -100,9 +101,10 @@ It bridges the gap between EasyGraph and higher-order relationships. EasyHypergr
100
101
  👉 For more details, please refer to its [documentation](https://easy-graph.github.io/docs/eggpu.html) page.
101
102
 
102
103
  # News
103
- - [06-29-2025] 🎉 Thanks to our amazing community! EasyGraph has reached 800,000 downloads!
104
- - [05-30-2025] 🎉 Our paper "EasyHypergraph: an open-source software for fast and memory-saving analysis and learning of higher-order networks" was accepted by Humanities and Social Sciences Communications (Nature Portfolio)!
105
- - [12-04-2024] 🎉 We received the "Top Open Source Certificate" by International Open Benchmark Council!
104
+ - [09-29-2025] 🎉 Thanks to our amazing community! EasyGraph has reached 900,000 downloads!
105
+ - [07-27-2025] 🎉 We released EasyGraph 1.5! This version integrates the HWNN model and supports 11 representative network datasets.
106
+ - [05-30-2025] 🎉 Our paper "EasyHypergraph: an open-source software for fast and memory-saving analysis and learning of higher-order networks" was accepted by Humanities and Social Sciences Communications (Nature Portfolio)! [[PDF](https://www.nature.com/articles/s41599-025-05180-5)]
107
+ - [12-04-2024] 🎉 We received the "Top Open Source Certificate" by International Open Benchmark Council! [[Certificate](https://chenyang03.wordpress.com/wp-content/uploads/2025/07/image.png?w=1024)]
106
108
  - [11-22-2024] We released EasyGraph 1.4.1! This version now fully supports Python 3.13.
107
109
  - [09-27-2024] 🎉 EasyGraph has reached 500,000 downloads!
108
110
  - [09-20-2024] We released EasyGraph 1.4! This version features GPU-powered functions for efficient large network analysis.
@@ -111,7 +113,7 @@ It bridges the gap between EasyGraph and higher-order relationships. EasyHypergr
111
113
  - [03-06-2024] 🎉 We received the Shanghai Open Source Innovation Outstanding Achievement Award (Grand Prize)! [News](https://news.fudan.edu.cn/2024/0401/c2463a139799/page.htm)
112
114
  - [02-05-2024] We released EasyGraph 1.1! This version features hypergraph analysis and learning for higher-order network modeling and representation.
113
115
  - [08-17-2023] We released EasyGraph 1.0!
114
- - [08-08-2023] 🎉 Our paper "EasyGraph: A Multifunctional, Cross-Platform, and Effective Library for Interdisciplinary Network Analysis" was accepted by Patterns (Cell Press)!
116
+ - [08-08-2023] 🎉 Our paper "EasyGraph: A Multifunctional, Cross-Platform, and Effective Library for Interdisciplinary Network Analysis" was accepted by Patterns (Cell Press)! [[PDF](https://www.sciencedirect.com/science/article/pii/S2666389923002180)]
115
117
  - [07-22-2020] First public release of EasyGraph!
116
118
 
117
119
  # Stargazers
@@ -22,7 +22,7 @@ numpy>=1.23.1
22
22
  [:python_version >= "3.7"]
23
23
  statsmodels>=0.12.0
24
24
 
25
- [:python_version >= "3.7" and python_version <= "3.13"]
25
+ [:python_version >= "3.7" and python_version <= "3.14"]
26
26
  numpy>=1.19.5
27
27
 
28
28
  [:python_version >= "3.8"]
@@ -52,9 +52,10 @@ It bridges the gap between EasyGraph and higher-order relationships. EasyHypergr
52
52
  👉 For more details, please refer to its [documentation](https://easy-graph.github.io/docs/eggpu.html) page.
53
53
 
54
54
  # News
55
- - [06-29-2025] 🎉 Thanks to our amazing community! EasyGraph has reached 800,000 downloads!
56
- - [05-30-2025] 🎉 Our paper "EasyHypergraph: an open-source software for fast and memory-saving analysis and learning of higher-order networks" was accepted by Humanities and Social Sciences Communications (Nature Portfolio)!
57
- - [12-04-2024] 🎉 We received the "Top Open Source Certificate" by International Open Benchmark Council!
55
+ - [09-29-2025] 🎉 Thanks to our amazing community! EasyGraph has reached 900,000 downloads!
56
+ - [07-27-2025] 🎉 We released EasyGraph 1.5! This version integrates the HWNN model and supports 11 representative network datasets.
57
+ - [05-30-2025] 🎉 Our paper "EasyHypergraph: an open-source software for fast and memory-saving analysis and learning of higher-order networks" was accepted by Humanities and Social Sciences Communications (Nature Portfolio)! [[PDF](https://www.nature.com/articles/s41599-025-05180-5)]
58
+ - [12-04-2024] 🎉 We received the "Top Open Source Certificate" by International Open Benchmark Council! [[Certificate](https://chenyang03.wordpress.com/wp-content/uploads/2025/07/image.png?w=1024)]
58
59
  - [11-22-2024] We released EasyGraph 1.4.1! This version now fully supports Python 3.13.
59
60
  - [09-27-2024] 🎉 EasyGraph has reached 500,000 downloads!
60
61
  - [09-20-2024] We released EasyGraph 1.4! This version features GPU-powered functions for efficient large network analysis.
@@ -63,7 +64,7 @@ It bridges the gap between EasyGraph and higher-order relationships. EasyHypergr
63
64
  - [03-06-2024] 🎉 We received the Shanghai Open Source Innovation Outstanding Achievement Award (Grand Prize)! [News](https://news.fudan.edu.cn/2024/0401/c2463a139799/page.htm)
64
65
  - [02-05-2024] We released EasyGraph 1.1! This version features hypergraph analysis and learning for higher-order network modeling and representation.
65
66
  - [08-17-2023] We released EasyGraph 1.0!
66
- - [08-08-2023] 🎉 Our paper "EasyGraph: A Multifunctional, Cross-Platform, and Effective Library for Interdisciplinary Network Analysis" was accepted by Patterns (Cell Press)!
67
+ - [08-08-2023] 🎉 Our paper "EasyGraph: A Multifunctional, Cross-Platform, and Effective Library for Interdisciplinary Network Analysis" was accepted by Patterns (Cell Press)! [[PDF](https://www.sciencedirect.com/science/article/pii/S2666389923002180)]
67
68
  - [07-22-2020] First public release of EasyGraph!
68
69
 
69
70
  # Stargazers
@@ -175,7 +175,7 @@ exclude_lines = ["pragma: no cover", "if TYPE_CHECKING:"]
175
175
  # test-requires = ["pytest", "lxml", "torch"]
176
176
  # test-command = "pytest"
177
177
 
178
- build = ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*"]
178
+ build = ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*", "cp313-*", "cp314-*"]
179
179
 
180
180
  # Skip building free-threaded compatible wheels on Windows
181
181
  skip = "*t-win*"
@@ -109,7 +109,7 @@ with open("README.md") as fh:
109
109
  CYTHON_STR = "Cython"
110
110
  setuptools.setup(
111
111
  name="Python-EasyGraph",
112
- version="1.5",
112
+ version="1.5.1",
113
113
  author="Fudan DataNET Group",
114
114
  author_email="mgao21@m.fudan.edu.cn",
115
115
  description="Easy Graph",
@@ -124,13 +124,14 @@ setuptools.setup(
124
124
  "Programming Language :: Python :: 3.11",
125
125
  "Programming Language :: Python :: 3.12",
126
126
  "Programming Language :: Python :: 3.13",
127
+ "Programming Language :: Python :: 3.14",
127
128
  "License :: OSI Approved :: BSD License",
128
129
  "Operating System :: OS Independent",
129
130
  ],
130
- python_requires=">=3.8, <3.14",
131
+ python_requires=">=3.8, <3.15",
131
132
  install_requires=[
132
133
  "numpy>=1.23.1; python_version>='3.10'",
133
- "numpy>=1.19.5; python_version>='3.7' and python_version<='3.13'",
134
+ "numpy>=1.19.5; python_version>='3.7' and python_version<='3.14'",
134
135
  "tqdm>=4.49.0",
135
136
  "joblib>=1.2.0",
136
137
  "six>=1.16.0",
File without changes