PKG-INFO 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216
  1. Metadata-Version: 1.1
  2. Name: altgraph
  3. Version: 0.12
  4. Summary: Python graph (network) package
  5. Home-page: http://packages.python.org/altgraph
  6. Author: Ronald Oussoren
  7. Author-email: ronaldoussoren@mac.com
  8. License: MIT
  9. Download-URL: http://pypi.python.org/pypi/altgraph
  10. Description: altgraph is a fork of graphlib: a graph (network) package for constructing
  11. graphs, BFS and DFS traversals, topological sort, shortest paths, etc. with
  12. graphviz output.
  13. altgraph includes some additional usage of Python 2.6+ features and
  14. enhancements related to modulegraph and macholib.
  15. Release history
  16. ===============
  17. 0.12
  18. ----
  19. - Added ``ObjectGraph.edgeData`` to retrieve the edge data
  20. from a specific edge.
  21. - Added ``AltGraph.update_edge_data`` and ``ObjectGraph.updateEdgeData``
  22. to update the data associated with a graph edge.
  23. 0.11
  24. ----
  25. - Stabilize the order of elements in dot file exports,
  26. patch from bitbucket user 'pombredanne'.
  27. - Tweak setup.py file to remove dependency on distribute (but
  28. keep the dependency on setuptools)
  29. 0.10.2
  30. ------
  31. - There where no classifiers in the package metadata due to a bug
  32. in setup.py
  33. 0.10.1
  34. ------
  35. This is a bugfix release
  36. Bug fixes:
  37. - Issue #3: The source archive contains a README.txt
  38. while the setup file refers to ReadMe.txt.
  39. This is caused by a misfeature in distutils, as a
  40. workaround I've renamed ReadMe.txt to README.txt
  41. in the source tree and setup file.
  42. 0.10
  43. -----
  44. This is a minor feature release
  45. Features:
  46. - Do not use "2to3" to support Python 3.
  47. As a side effect of this altgraph now supports
  48. Python 2.6 and later, and no longer supports
  49. earlier releases of Python.
  50. - The order of attributes in the Dot output
  51. is now always alphabetical.
  52. With this change the output will be consistent
  53. between runs and Python versions.
  54. 0.9
  55. ---
  56. This is a minor bugfix release
  57. Features:
  58. - Added ``altgraph.ObjectGraph.ObjectGraph.nodes``, a method
  59. yielding all nodes in an object graph.
  60. Bugfixes:
  61. - The 0.8 release didn't work with py2app when using
  62. python 3.x.
  63. 0.8
  64. -----
  65. This is a minor feature release. The major new feature
  66. is a extensive set of unittests, which explains almost
  67. all other changes in this release.
  68. Bugfixes:
  69. - Installing failed with Python 2.5 due to using a distutils
  70. class that isn't available in that version of Python
  71. (issue #1 on the issue tracker)
  72. - ``altgraph.GraphStat.degree_dist`` now actually works
  73. - ``altgraph.Graph.add_edge(a, b, create_nodes=False)`` will
  74. no longer create the edge when one of the nodes doesn't
  75. exist.
  76. - ``altgraph.Graph.forw_topo_sort`` failed for some sparse graphs.
  77. - ``altgraph.Graph.back_topo_sort`` was completely broken in
  78. previous releases.
  79. - ``altgraph.Graph.forw_bfs_subgraph`` now actually works.
  80. - ``altgraph.Graph.back_bfs_subgraph`` now actually works.
  81. - ``altgraph.Graph.iterdfs`` now returns the correct result
  82. when the ``forward`` argument is ``False``.
  83. - ``altgraph.Graph.iterdata`` now returns the correct result
  84. when the ``forward`` argument is ``False``.
  85. Features:
  86. - The ``altgraph.Graph`` constructor now accepts an argument
  87. that contains 2- and 3-tuples instead of requireing that
  88. all items have the same size. The (optional) argument can now
  89. also be any iterator.
  90. - ``altgraph.Graph.Graph.add_node`` has no effect when you
  91. add a hidden node.
  92. - The private method ``altgraph.Graph._bfs`` is no longer
  93. present.
  94. - The private method ``altgraph.Graph._dfs`` is no longer
  95. present.
  96. - ``altgraph.ObjectGraph`` now has a ``__contains__`` methods,
  97. which means you can use the ``in`` operator to check if a
  98. node is part of a graph.
  99. - ``altgraph.GraphUtil.generate_random_graph`` will raise
  100. ``GraphError`` instead of looping forever when it is
  101. impossible to create the requested graph.
  102. - ``altgraph.Dot.edge_style`` raises ``GraphError`` when
  103. one of the nodes is not present in the graph. The method
  104. silently added the tail in the past, but without ensuring
  105. a consistent graph state.
  106. - ``altgraph.Dot.save_img`` now works when the mode is
  107. ``"neato"``.
  108. 0.7.2
  109. -----
  110. This is a minor bugfix release
  111. Bugfixes:
  112. - distutils didn't include the documentation subtree
  113. 0.7.1
  114. -----
  115. This is a minor feature release
  116. Features:
  117. - Documentation is now generated using `sphinx <http://pypi.python.org/pypi/sphinx>`_
  118. and can be viewed at <http://packages.python.org/altgraph>.
  119. - The repository has moved to bitbucket
  120. - ``altgraph.GraphStat.avg_hops`` is no longer present, the function had no
  121. implementation and no specified behaviour.
  122. - the module ``altgraph.compat`` is gone, which means altgraph will no
  123. longer work with Python 2.3.
  124. 0.7.0
  125. -----
  126. This is a minor feature release.
  127. Features:
  128. - Support for Python 3
  129. - It is now possible to run tests using 'python setup.py test'
  130. (The actual testsuite is still very minimal though)
  131. Keywords: graph
  132. Platform: any
  133. Classifier: Intended Audience :: Developers
  134. Classifier: License :: OSI Approved :: MIT License
  135. Classifier: Programming Language :: Python
  136. Classifier: Programming Language :: Python :: 2
  137. Classifier: Programming Language :: Python :: 2.7
  138. Classifier: Programming Language :: Python :: 3
  139. Classifier: Programming Language :: Python :: 3.3
  140. Classifier: Programming Language :: Python :: 3.4
  141. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  142. Classifier: Topic :: Scientific/Engineering :: Mathematics
  143. Classifier: Topic :: Scientific/Engineering :: Visualization