Opened 15 years ago

Last modified 12 years ago

#4639 closed defect

setup.py file is bad — at Initial Version

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

Description

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)},
)

Change History (0)

Note: See TracTickets for help on using tickets.