~trac-bzr-team/trac-bzr/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Martin von Gagern
  • Date: 2009-12-17 21:48:27 UTC
  • Revision ID: martin.vgagern@gmx.net-20091217214827-nhoxydi1fh4549zp
Drop dependencies from setup script.

These deps are likely to cause more trouble than they avoid, because on
systems where either Trac or bzr is installed without a proper egg thingy
around, Trac will fail to load the plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
    ],
36
36
    packages=['tracbzr'],
37
37
    entry_points={'trac.plugins': 'bzr = tracbzr.backend'},
38
 
    install_requires=[
39
 
        'Trac >=0.10, <0.12',
40
 
        'bzr >= 2.0',
41
 
    ],
 
38
#    install_requires=[
 
39
#        'Trac >=0.10, <0.12',
 
40
#        'bzr >= 2.0',
 
41
#    ],
42
42
)