Changeset 16753
- Timestamp:
- Aug 25, 2017, 6:37:18 PM (8 years ago)
- Location:
- newsflashmacro/0.11
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
newsflashmacro/0.11/newsflash/macro.py
r16267 r16753 43 43 def expand_macro(self, formatter, name, content): 44 44 return Markup('</div>') 45 46 -
newsflashmacro/0.11/setup.py
r16267 r16753 6 6 7 7 setup( 8 name = 'TracNewsFlash', 9 version = '1.0.2', 10 packages = ['newsflash'], 11 package_data = { 'newsflash' : [ 'htdocs/css/*.css' ] }, 12 author = 'Noah Kantrowitz', 13 author_email = 'noah@coderanger.net', 14 description = 'A Trac macro to make a colored box.', 15 long_description = open(os.path.join(os.path.dirname(__file__), 'README')).read(), 16 license = 'BSD', 17 keywords = 'trac plugin macro news flash', 18 url = 'https://trac-hacks.org/wiki/NewsFlashMacro', 19 classifiers = [ 8 name='TracNewsFlash', 9 version='1.0.3', 10 packages=['newsflash'], 11 package_data={'newsflash': ['htdocs/css/*.css']}, 12 author='Noah Kantrowitz', 13 author_email='noah@coderanger.net', 14 description='A Trac macro to make a colored box.', 15 long_description=open(os.path.join( 16 os.path.dirname(__file__), 'README')).read(), 17 license='BSD', 18 keywords='trac plugin macro news flash', 19 url='https://trac-hacks.org/wiki/NewsFlashMacro', 20 classifiers=[ 20 21 'Framework :: Trac', 21 22 'Development Status :: 5 - Production/Stable', … … 27 28 ], 28 29 29 install_requires =['Trac'],30 install_requires=['Trac'], 30 31 31 entry_points ={32 entry_points={ 32 33 'trac.plugins': [ 33 34 'newsflash.macro = newsflash.macro',
Note: See TracChangeset
for help on using the changeset viewer.