Edgewall Software

Changes between Version 1 and Version 2 of SetupTools


Ignore:
Timestamp:
Feb 23, 2007, 2:04:59 PM (17 years ago)
Author:
techtonik <techtonik@…>
Comment:

how to check setuptools version for those who don't know what st is

Legend:

Unmodified
Added
Removed
Modified
  • SetupTools

    v1 v2  
    77Trac itself will be able to be packaged using setuptools (and use it for specifying its dependencies), starting with [milestone:0.11].
    88
     9To check the version of any Python package including setuptools type:
     10{{{
     11!#sh
     12$ python
     13Python 2.3.5
     14>>> import setuptools
     15>>> setuptools.__version__
     16'0.7a1'
     17}}}
     18
    919----
    1020See also: TracDev/Proposals/Setuptools, [source:sandbox/setuptools]