Changeset 16706
- Timestamp:
- Jul 12, 2017, 3:53:02 PM (7 years ago)
- Location:
- flexibleassigntoplugin/0.13/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
flexibleassigntoplugin/0.13/trunk/flexibleassignto/__init__.py
r16704 r16706 1 1 import pkg_resources 2 from flexibleassignto import * 3 2 4 pkg_resources.require('Trac >= 1.0') -
flexibleassigntoplugin/0.13/trunk/flexibleassignto/flexibleassignto.py
r16704 r16706 17 17 from trac.util import as_bool 18 18 from 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__]) 19 from trac.web.api import IRequestFilter 27 20 28 21 -
flexibleassigntoplugin/0.13/trunk/setup.py
r16704 r16706 3 3 from setuptools import find_packages, setup 4 4 5 from flexibleassignto import flexibleassignto6 VERSION = flexibleassignto.version7 8 PACKAGE = 'FlexibleAssignTo'9 10 5 setup( 11 name= PACKAGE,12 version= VERSION,6 name='FlexibleAssignTo', 7 version='0.8.13', 13 8 description="A Trac extension point for customizing the Assign To " 14 9 "ticket field.", … … 24 19 flexibleassignto = flexibleassignto.flexibleassignto 25 20 """, 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 ], 26 30 ) 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.