Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Made a custom bdist_wininst with good default values. Added installer…
… banner

for installer. Fixes #165.


git-svn-id: http://trac.edgewall.org/intertrac/log:/trunk@364 af82e41b-90c4-0310-8c96-b1721e28e2e2
  • Loading branch information
daniel committed Mar 31, 2004
1 parent 3a8ffc2 commit a07a240
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
1 change: 1 addition & 0 deletions setup.cfg
@@ -1,4 +1,5 @@
[bdist_rpm]
packager = Edgewall Software <info@edgewall.com>
requires = python >= 2.1
subversion-python >= 1.0.0
pysqlite >= 0.4.3
Expand Down
21 changes: 20 additions & 1 deletion setup.py
Expand Up @@ -97,8 +97,27 @@ def run (self):
os.chmod(file, mode)



# Our custom bdist_wininst
import distutils.command.bdist_wininst
from distutils.command.bdist_wininst import bdist_wininst
class my_bdist_wininst(bdist_wininst):
def initialize_options(self):
bdist_wininst.initialize_options(self)
self.title = "Trac %s" % VERSION
self.bitmap = "setup_wininst.bmp"
distutils.command.bdist_wininst.bdist_wininst = my_bdist_wininst


setup(name="trac",
description="Trac - Wiki-based issue tracker and project environment",
description="Integrated scm, wiki, issue tracker and project environment",
long_description=\
"""
Trac is a minimalistic web-based software project management and bug/issue
tracking system. It provides an interface to the Subversion revision control
systems, an integrated wiki, flexible issue tracking and convenient report
facilities.
""",
version=VERSION,
author="Edgewall Software",
author_email="info@edgewall.com",
Expand Down
Binary file added setup_wininst.bmp
Binary file not shown.

0 comments on commit a07a240

Please sign in to comment.