METADATA 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. Metadata-Version: 2.1
  2. Name: altgraph
  3. Version: 0.17.5
  4. Summary: Python graph (network) package
  5. Home-page: https://altgraph.readthedocs.io
  6. Download-URL: http://pypi.python.org/pypi/altgraph
  7. Author: Ronald Oussoren
  8. Author-email: ronaldoussoren@mac.com
  9. Maintainer: Ronald Oussoren
  10. Maintainer-email: ronaldoussoren@mac.com
  11. License: MIT
  12. Keywords: graph
  13. Platform: any
  14. Classifier: Intended Audience :: Developers
  15. Classifier: License :: OSI Approved :: MIT License
  16. Classifier: Programming Language :: Python
  17. Classifier: Programming Language :: Python :: 2
  18. Classifier: Programming Language :: Python :: 2.7
  19. Classifier: Programming Language :: Python :: 3
  20. Classifier: Programming Language :: Python :: 3.4
  21. Classifier: Programming Language :: Python :: 3.5
  22. Classifier: Programming Language :: Python :: 3.6
  23. Classifier: Programming Language :: Python :: 3.7
  24. Classifier: Programming Language :: Python :: 3.8
  25. Classifier: Programming Language :: Python :: 3.9
  26. Classifier: Programming Language :: Python :: 3.10
  27. Classifier: Programming Language :: Python :: 3.11
  28. Classifier: Programming Language :: Python :: 3.12
  29. Classifier: Programming Language :: Python :: 3.13
  30. Classifier: Programming Language :: Python :: 3.14
  31. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  32. Classifier: Topic :: Scientific/Engineering :: Mathematics
  33. Classifier: Topic :: Scientific/Engineering :: Visualization
  34. Description-Content-Type: text/x-rst; charset=UTF-8
  35. License-File: LICENSE
  36. Project-URL: Documentation, https://altgraph.readthedocs.io/en/latest/
  37. Project-URL: Issue tracker, https://github.com/ronaldoussoren/altgraph/issues
  38. Project-URL: Repository, https://github.com/ronaldoussoren/altgraph
  39. altgraph is a fork of graphlib: a graph (network) package for constructing
  40. graphs, BFS and DFS traversals, topological sort, shortest paths, etc. with
  41. graphviz output.
  42. altgraph includes some additional usage of Python 2.6+ features and
  43. enhancements related to modulegraph and macholib.
  44. Project links
  45. -------------
  46. * `Documentation <https://altgraph.readthedocs.io/en/latest/>`_
  47. * `Issue Tracker <https://github.com/ronaldoussoren/altgraph/issues>`_
  48. * `Repository <https://github.com/ronaldoussoren/altgraph/>`_
  49. Release history
  50. ===============
  51. 0.17.5
  52. ------
  53. * Update classifiers for Python 3.13 and 3.14
  54. * Drop dependency on "pkg_resources"
  55. 0.17.4
  56. ------
  57. * Update classifiers for Python 3.12
  58. 0.17.3
  59. ------
  60. * Update classifiers for Python 3.11
  61. 0.17.2
  62. ------
  63. * Change in setup.py to fix the sidebar links on PyPI
  64. 0.17.1
  65. ------
  66. * Explicitly mark Python 3.10 as supported in wheel metadata.
  67. 0.17
  68. ----
  69. * Explicitly mark Python 3.8 as supported in wheel metadata.
  70. * Migrate from Bitbucket to GitHub
  71. * Run black on the entire repository
  72. 0.16.1
  73. ------
  74. * Explicitly mark Python 3.7 as supported in wheel metadata.
  75. 0.16
  76. ----
  77. * Add LICENSE file
  78. 0.15
  79. ----
  80. * ``ObjectGraph.get_edges``, ``ObjectGraph.getEdgeData`` and ``ObjectGraph.updateEdgeData``
  81. accept *None* as the node to get and treat this as an alias for *self* (as other
  82. methods already did).
  83. 0.14
  84. ----
  85. - Issue #7: Remove use of ``iteritems`` in altgraph.GraphAlgo code
  86. 0.13
  87. ----
  88. - Issue #4: Graph._bfs_subgraph and back_bfs_subgraph return subgraphs with reversed edges
  89. Fix by "pombredanne" on bitbucket.
  90. 0.12
  91. ----
  92. - Added ``ObjectGraph.edgeData`` to retrieve the edge data
  93. from a specific edge.
  94. - Added ``AltGraph.update_edge_data`` and ``ObjectGraph.updateEdgeData``
  95. to update the data associated with a graph edge.
  96. 0.11
  97. ----
  98. - Stabilize the order of elements in dot file exports,
  99. patch from bitbucket user 'pombredanne'.
  100. - Tweak setup.py file to remove dependency on distribute (but
  101. keep the dependency on setuptools)
  102. 0.10.2
  103. ------
  104. - There where no classifiers in the package metadata due to a bug
  105. in setup.py
  106. 0.10.1
  107. ------
  108. This is a bugfix release
  109. Bug fixes:
  110. - Issue #3: The source archive contains a README.txt
  111. while the setup file refers to ReadMe.txt.
  112. This is caused by a misfeature in distutils, as a
  113. workaround I've renamed ReadMe.txt to README.txt
  114. in the source tree and setup file.
  115. 0.10
  116. -----
  117. This is a minor feature release
  118. Features:
  119. - Do not use "2to3" to support Python 3.
  120. As a side effect of this altgraph now supports
  121. Python 2.6 and later, and no longer supports
  122. earlier releases of Python.
  123. - The order of attributes in the Dot output
  124. is now always alphabetical.
  125. With this change the output will be consistent
  126. between runs and Python versions.
  127. 0.9
  128. ---
  129. This is a minor bugfix release
  130. Features:
  131. - Added ``altgraph.ObjectGraph.ObjectGraph.nodes``, a method
  132. yielding all nodes in an object graph.
  133. Bugfixes:
  134. - The 0.8 release didn't work with py2app when using
  135. python 3.x.
  136. 0.8
  137. -----
  138. This is a minor feature release. The major new feature
  139. is a extensive set of unittests, which explains almost
  140. all other changes in this release.
  141. Bugfixes:
  142. - Installing failed with Python 2.5 due to using a distutils
  143. class that isn't available in that version of Python
  144. (issue #1 on the issue tracker)
  145. - ``altgraph.GraphStat.degree_dist`` now actually works
  146. - ``altgraph.Graph.add_edge(a, b, create_nodes=False)`` will
  147. no longer create the edge when one of the nodes doesn't
  148. exist.
  149. - ``altgraph.Graph.forw_topo_sort`` failed for some sparse graphs.
  150. - ``altgraph.Graph.back_topo_sort`` was completely broken in
  151. previous releases.
  152. - ``altgraph.Graph.forw_bfs_subgraph`` now actually works.
  153. - ``altgraph.Graph.back_bfs_subgraph`` now actually works.
  154. - ``altgraph.Graph.iterdfs`` now returns the correct result
  155. when the ``forward`` argument is ``False``.
  156. - ``altgraph.Graph.iterdata`` now returns the correct result
  157. when the ``forward`` argument is ``False``.
  158. Features:
  159. - The ``altgraph.Graph`` constructor now accepts an argument
  160. that contains 2- and 3-tuples instead of requireing that
  161. all items have the same size. The (optional) argument can now
  162. also be any iterator.
  163. - ``altgraph.Graph.Graph.add_node`` has no effect when you
  164. add a hidden node.
  165. - The private method ``altgraph.Graph._bfs`` is no longer
  166. present.
  167. - The private method ``altgraph.Graph._dfs`` is no longer
  168. present.
  169. - ``altgraph.ObjectGraph`` now has a ``__contains__`` methods,
  170. which means you can use the ``in`` operator to check if a
  171. node is part of a graph.
  172. - ``altgraph.GraphUtil.generate_random_graph`` will raise
  173. ``GraphError`` instead of looping forever when it is
  174. impossible to create the requested graph.
  175. - ``altgraph.Dot.edge_style`` raises ``GraphError`` when
  176. one of the nodes is not present in the graph. The method
  177. silently added the tail in the past, but without ensuring
  178. a consistent graph state.
  179. - ``altgraph.Dot.save_img`` now works when the mode is
  180. ``"neato"``.
  181. 0.7.2
  182. -----
  183. This is a minor bugfix release
  184. Bugfixes:
  185. - distutils didn't include the documentation subtree
  186. 0.7.1
  187. -----
  188. This is a minor feature release
  189. Features:
  190. - Documentation is now generated using `sphinx <http://pypi.python.org/pypi/sphinx>`_
  191. and can be viewed at <http://packages.python.org/altgraph>.
  192. - The repository has moved to bitbucket
  193. - ``altgraph.GraphStat.avg_hops`` is no longer present, the function had no
  194. implementation and no specified behaviour.
  195. - the module ``altgraph.compat`` is gone, which means altgraph will no
  196. longer work with Python 2.3.
  197. 0.7.0
  198. -----
  199. This is a minor feature release.
  200. Features:
  201. - Support for Python 3
  202. - It is now possible to run tests using 'python setup.py test'
  203. (The actual testsuite is still very minimal though)