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

     
    77setup(name='ImportExportXLS',
    88      description='Plugin to export and import tickets via XLS',
    99      keywords='ticket excel import export',
    10       version='0.1.8',
     10      version='0.1.9',
    1111      url='',
    1212      license='http://www.opensource.org/licenses/mit-license.php',
    1313      author='ben.12',
     
    1515      long_description="",
    1616      packages=[PACKAGE],
    1717      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)

Change History (1)

comment:1 Changed 9 years ago by Ryan J Ollos

Resolution: fixed
Status: newclosed

In 14788:

0.1.9: Add installation requirements to setup.py.

Fixes #12418.

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain ben_12.
The resolution will be deleted. Next status will be 'reopened'.

Add Comment


E-mail address and name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.