~ubuntu-branches/ubuntu/wily/python-networkx/wily

« back to all changes in this revision

Viewing changes to networkx/release.py

  • Committer: Bazaar Package Importer
  • Author(s): Cyril Brulebois
  • Date: 2008-03-02 01:06:32 UTC
  • mfrom: (1.2.1 upstream) (3.1.3 hardy)
  • Revision ID: james.westby@ubuntu.com-20080302010632-1lp6qe1orf59jl8b
* debian/control:
   + Replace python-setuptools with python-pkg-resources in the
     “Recommends:” since pkg_resources is now available in this
     separate package, thanks Matthias Klose (Closes: #468721).
* debian/copyright:
   + Use “© $years $name” instead of invalid “$name, $years” and
     “(C) $years, $name”, thanks to lintian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
"""Release data for NetworkX."""
2
2
 
3
 
#    Copyright (C) 2004-2006 by 
 
3
#    Copyright (C) 2004-2008 by 
4
4
#    Aric Hagberg <hagberg@lanl.gov>
5
5
#    Dan Schult <dschult@colgate.edu>
6
6
#    Pieter Swart <swart@lanl.gov>
8
8
#    http://www.gnu.org/copyleft/lesser.html
9
9
 
10
10
__author__ = """Aric Hagberg (hagberg@lanl.gov)\nPieter Swart (swart@lanl.gov)\nDan Schult (dschult@colgate.edu)"""
11
 
__date__ = "$Date: 2006-09-29 08:59:14 -0600 (Fri, 29 Sep 2006) $"
12
11
 
13
12
name = 'networkx'
14
 
version = '0.32'
 
13
version = '0.36'
15
14
 
16
15
description = "Python package for creating and manipulating graphs and networks"
17
16
 
27
26
           'Swart' : ('Pieter Swart','swart@lanl.gov')
28
27
           }
29
28
url = 'http://networkx.lanl.gov/'
30
 
download_url="http://sourceforge.net/project/showfiles.php?group_id=122233"
 
29
download_url="http://networkx.lanl.gov/download"
31
30
platforms = ['Linux','Mac OSX','Windows XP/2000/NT']
32
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
 
33
46
# Get date dynamically
34
47
import time
35
48
date = time.asctime()