METADATA 7.1 KB

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