Sections
Timeline
View Tickets
New Ticket
Sub-Sections
Download
Unified Diff
Zip Archive
Metanav
Preferences
About Trac
Links
Slowchop Studios
Gerald Kaszuba
Advertisement

Changeset 19

Show
Ignore:
Timestamp:
14/02/07 21:25:53 (22 months ago)
Author:
gak
Message:

Fixed versioning

Location:
trunk
Files:
1 removed
3 modified

Legend:

Unmodified
Added
Removed
  • trunk/MANIFEST.in

    r14 r19  
    1 include version.py 
    21include examples/* 
    32 
  • trunk/pycallgraph.py

    r18 r19  
    218218    """This has been changed to make_dot_graph.""" 
    219219    raise PyCallGraphException( \ 
    220         "make_graph is depricated. Please use make_dot_graph") 
     220        'make_graph is depricated. Please use make_dot_graph') 
    221221 
    222222def make_dot_graph(filename, format='png', tool='dot', stop=True): 
     
    250250    raw_input() 
    251251 
    252 __version__ = "$Revision: $" 
     252__version__ = '0.3.0' 
    253253# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: 
    254254 
  • trunk/setup.py

    r4 r19  
    33from distutils.core import setup 
    44 
    5 import version 
     5from pycallgraph import __version__ 
    66 
    77setup( 
    88    name='pycallgraph', 
    9     version=version.version, 
     9    version=__version__, 
    1010    description='Python Call Graph', 
    1111    author='Gerald Kaszuba', 
     
    1919    download_url = 
    2020    'http://pycallgraph.slowchop.com/files/download/pycallgraph-%s.tar.gz' % \ 
    21             version.version, 
     21        __version__, 
    2222    classifiers = [ 
    2323        'Development Status :: 4 - Beta',