Package networkx :: Module release
[hide private]
[frames] | no frames]

Source Code for Module networkx.release

 1  """Release data for NetworkX.""" 
 2   
 3  #    Copyright (C) 2004-2008 by  
 4  #    Aric Hagberg <hagberg@lanl.gov> 
 5  #    Dan Schult <dschult@colgate.edu> 
 6  #    Pieter Swart <swart@lanl.gov> 
 7  #    Distributed under the terms of the GNU Lesser General Public License 
 8  #    http://www.gnu.org/copyleft/lesser.html 
 9   
10  __author__ = """Aric Hagberg (hagberg@lanl.gov)\nPieter Swart (swart@lanl.gov)\nDan Schult (dschult@colgate.edu)""" 
11   
12  name = 'networkx' 
13  version = '0.36' 
14   
15  description = "Python package for creating and manipulating graphs and networks" 
16   
17  long_description = \ 
18  """ 
19  NetworkX is a Python package for the creation, manipulation, and 
20  study of the structure, dynamics, and functions of complex networks.   
21   
22  """ 
23  license = 'LGPL' 
24  authors = {'Hagberg' : ('Aric Hagberg','hagberg@lanl.gov'), 
25             'Schult' : ('Dan Schult','dschult@colgate.edu'), 
26             'Swart' : ('Pieter Swart','swart@lanl.gov') 
27             } 
28  url = 'http://networkx.lanl.gov/' 
29  download_url="http://networkx.lanl.gov/download" 
30  platforms = ['Linux','Mac OSX','Windows XP/2000/NT'] 
31  keywords = ['Networks', 'Graph Theory', 'Mathematics', 'network', 'graph', 'discrete mathematics', 'math'] 
32  classifiers = [ 
33          'Development Status :: 4 - Beta', 
34          'Intended Audience :: Developers', 
35          'Intended Audience :: Science/Research', 
36          'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)', 
37          'Operating System :: OS Independent', 
38          'Programming Language :: Python', 
39          'Topic :: Software Development :: Libraries :: Python Modules', 
40          'Topic :: Scientific/Engineering :: Bio-Informatics', 
41          'Topic :: Scientific/Engineering :: Information Analysis', 
42          'Topic :: Scientific/Engineering :: Mathematics', 
43          'Topic :: Scientific/Engineering :: Physics', 
44          ] 
45   
46  # Get date dynamically 
47  import time 
48  date = time.asctime() 
49  del time 
50