Modify ↓
Opened 9 years ago
Closed 9 years ago
#12418 closed enhancement (fixed)
Add installation requirements to setup.py
Reported by: | Ryan J Ollos | Owned by: | ben_12 |
---|---|---|---|
Priority: | normal | Component: | ExportImportXlsPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: |
Description
The following change to setup.py
will result in the dependencies being automatically installed. If you have no objections, I'd be happy to commit the patch.
-
setup.py
7 7 setup(name='ImportExportXLS', 8 8 description='Plugin to export and import tickets via XLS', 9 9 keywords='ticket excel import export', 10 version='0.1. 8',10 version='0.1.9', 11 11 url='', 12 12 license='http://www.opensource.org/licenses/mit-license.php', 13 13 author='ben.12', … … 15 15 long_description="", 16 16 packages=[PACKAGE], 17 17 package_data={PACKAGE : ['templates/*.cs', 'templates/*.html', 'htdocs/*.css', 'htdocs/*.png', 'htdocs/*.js']}, 18 entry_points={'trac.plugins': '%s = %s' % (PACKAGE, PACKAGE)}) 18 entry_points={'trac.plugins': '%s = %s' % (PACKAGE, PACKAGE)}, 19 install_requires=['xlwt', 'xlrd'], 20 )
Attachments (0)
Note: See
TracTickets for help on using
tickets.
In 14788: