Changeset 16706


Ignore:
Timestamp:
Jul 12, 2017, 3:53:02 PM (7 years ago)
Author:
Ryan J Ollos
Message:

FlexibleAssignTo 0.8.13: Fix export of interface and cleanup setup.py

Refs #13233.

Location:
flexibleassigntoplugin/0.13/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • flexibleassigntoplugin/0.13/trunk/flexibleassignto/__init__.py

    r16704 r16706  
    11import pkg_resources
     2from flexibleassignto import *
     3
    24pkg_resources.require('Trac >= 1.0')
  • flexibleassigntoplugin/0.13/trunk/flexibleassignto/flexibleassignto.py

    r16704 r16706  
    1717from trac.util import as_bool
    1818from trac.util.html import html as tag
    19 from trac.web import IRequestFilter
    20 
    21 # $Id: flexibleassignto.py 10067 2011-04-11 14:12:41Z gt4329b $
    22 __version__ = '0.8.13'
    23 __revision__ = "$Revision: 10067 $".replace('Revision:', '') \
    24                                    .replace('$', '').strip()
    25 version = __version__
    26 fullversion = ".".join([__version__, __revision__])
     19from trac.web.api import IRequestFilter
    2720
    2821
  • flexibleassigntoplugin/0.13/trunk/setup.py

    r16704 r16706  
    33from setuptools import find_packages, setup
    44
    5 from flexibleassignto import flexibleassignto
    6 VERSION = flexibleassignto.version
    7 
    8 PACKAGE = 'FlexibleAssignTo'
    9 
    105setup(
    11     name=PACKAGE,
    12     version=VERSION,
     6    name='FlexibleAssignTo',
     7    version='0.8.13',
    138    description="A Trac extension point for customizing the Assign To "
    149                "ticket field.",
     
    2419    flexibleassignto = flexibleassignto.flexibleassignto
    2520    """,
     21    classifiers=[
     22      'Development Status :: 3 - Alpha',
     23      'Environment :: Plugins',
     24      'Framework :: Trac',
     25      'Intended Audience :: Developers',
     26      'Intended Audience :: System Administrators',
     27      'Natural Language :: English',
     28      'Programming Language :: Python'
     29    ],
    2630)
    27 
    28 classifiers = [
    29   'Development Status :: 3 - Alpha',
    30   'Environment :: Plugins',
    31   'Framework :: Trac',
    32   'Intended Audience :: Developers',
    33   'Intended Audience :: System Administrators',
    34   'Natural Language :: English',
    35   'Programming Language :: Python'
    36 ]
Note: See TracChangeset for help on using the changeset viewer.