Modify ↓
#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 )
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 16 years ago by
comment:3 Changed 16 years ago by
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
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:5 Changed 12 years ago by
Description: | modified (diff) |
---|
Note: See
TracTickets for help on using
tickets.
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 !