Modify

Opened 15 years ago

Closed 12 years ago

Last modified 12 years ago

#4639 closed defect (fixed)

setup.py file is bad

Reported by: guillaumeh Owned by: CStrac
Priority: highest Component: FlexibleReporterNotificationPlugin
Severity: blocker Keywords:
Cc: Trac Release: 0.11

Description (last modified by Ryan J Ollos)

Hi,

Your setup.py file is bad in SVN and ZIP for 0.11 version.

Here is working one:

from setuptools import setup

PACKAGE = 'flexiblereporternotification'

setup(name=PACKAGE,
      version='0.0.1',
      packages=[PACKAGE],
      url='http://trac-hacks.org/wiki/FlexibleReporterNotificationPlugin',
      author='Satyam',
      long_description='',
      entry_points={'trac.plugins': '%s = %s' % (PACKAGE, PACKAGE)},
)

Attachments (0)

Change History (5)

comment:1 Changed 15 years ago by anonymous

After installation, I have not your plugin in the plugin list.

Is this normal ?

P.S: I forgot to tell you Thanks for your plugin ! It's exactly what we need here !! Very good idea !

comment:2 Changed 15 years ago by guillaumeh

Help ?

comment:3 Changed 15 years ago by Joshua Curtiss

Can anyone confirm if this is working on 0.11.x (I have 0.11.4)? I concur that the plugin doesn't show up in the plugin list, but is it working is the question. I am trying to run tests with fake tickets and it doesn't appear to do anything. Reporter will still receive minor ticket updates.

comment:4 Changed 12 years ago by Ryan J Ollos

Resolution: fixed
Status: newclosed

(In [11964]) Fixes #3871, #4149, #4639:

  • Removed empty 0.10 directory.
  • Converted tabs to spaces.
  • Fixed syntax error in setup.py.

The plugin still does not seem to be working. Please following #7554 and #8821 for progress towards getting this plugin working with Trac 0.11 through 1.0.

comment:5 Changed 12 years ago by Ryan J Ollos

Description: modified (diff)

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain CStrac.
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.