Changeset 3941

Show
Ignore:
Timestamp:
07/03/08 08:58:55 (2 months ago)
Author:
coderanger
Message:

Version bump.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • masterticketsplugin/0.11/setup.py

    r3416 r3941  
    66setup( 
    77    name = 'TracMasterTickets', 
    8     version = '2.1.1', 
     8    version = '2.1.2', 
    99    packages = ['mastertickets'], 
    1010    package_data = { 'mastertickets': ['templates/*.html', 'htdocs/*.js', 'htdocs/*.css' ] }, 
    1111 
    12     author = "Noah Kantrowitz"
    13     author_email = "noah@coderanger.net"
    14     description = "Provides support for ticket dependencies and master tickets."
    15     license = "BSD"
    16     keywords = "trac plugin ticket dependencies master"
    17     url = "http://trac-hacks.org/wiki/MasterTicketsPlugin"
     12    author = 'Noah Kantrowitz'
     13    author_email = 'noah@coderanger.net'
     14    description = 'Provides support for ticket dependencies and master tickets.'
     15    license = 'BSD'
     16    keywords = 'trac plugin ticket dependencies master'
     17    url = 'http://trac-hacks.org/wiki/MasterTicketsPlugin'
    1818    classifiers = [ 
    1919        'Framework :: Trac', 
     20        #'Development Status :: 1 - Planning', 
     21        # 'Development Status :: 2 - Pre-Alpha', 
     22        # 'Development Status :: 3 - Alpha', 
     23        # 'Development Status :: 4 - Beta', 
     24        'Development Status :: 5 - Production/Stable', 
     25        # 'Development Status :: 6 - Mature', 
     26        # 'Development Status :: 7 - Inactive', 
     27        'Environment :: Web Environment', 
     28        'License :: OSI Approved :: BSD License', 
     29        'Natural Language :: English', 
     30        'Operating System :: OS Independent', 
     31        'Programming Language :: Python', 
    2032    ], 
    2133     
    22     install_requires = ['Trac', 'Genshi >= 0.5.dev-r698,==dev'], 
     34    install_requires = ['Trac>=0.11', 'Genshi>=0.5'], 
    2335 
    2436    entry_points = {