Changeset 849
- Timestamp:
- 06/12/06 21:54:47 (2 years ago)
- Files:
-
- wikirenameplugin/0.10/setup.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
wikirenameplugin/0.10/setup.py
r813 r849 6 6 setup( 7 7 name = 'WikiRename', 8 version = ' 0.01',8 version = '1.0', 9 9 packages = ['wikirename'], 10 package_data={ 11 'wikirename' : [ 'templates/*.cs' ], 12 }, 10 package_data={ 'wikirename' : [ 'templates/*.cs' ] }, 13 11 14 12 author = "Noah Kantrowitz", 15 13 author_email = "coderanger@yahoo.com", 16 14 description = "Add simple support for renaming/moving wiki pages", 15 long_description = """Adds basic support for renaming wiki pages. A console script is provided, as is a WebAdmin module. \ 16 Please read the notice on the homepage for a list of known shortcomings.""", 17 17 license = "BSD", 18 keywords = " wiki page rename",19 url = "http://trac-hacks.org ",18 keywords = "trac plugin wiki page rename", 19 url = "http://trac-hacks.org/wiki/WikiRenamePlugin", 20 20 21 21 entry_points = { 22 22 'trac.plugins': [ 23 23 'wikirename.web_ui = wikirename.web_ui', 24 'wikirename.foobar = wikirename.foobar [ctxtnav]', 24 25 ], 25 26 'console_scripts': [ … … 28 29 }, 29 30 30 install_requires = [ 'TracWebAdmin', 'CtxtnavAdd' ], 31 install_requires = [ 'trac>=0.10', 'TracWebAdmin', 'CtxtnavAdd' ], 32 # Waiting on the extras support patch for this 33 #extras_require = { 34 # 'ctxtnav' : [ 'CtxtnavAdd' ], 35 #} 31 36 )
