1 """Release data for NetworkX."""
2
3
4
5
6
7
8
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
47 import time
48 date = time.asctime()
49 del time
50