summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 872b1d3)
raw | patch | inline | side by side (parent: 872b1d3)
author | stefan <stefan@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 12 Mar 2009 18:23:54 +0000 (18:23 +0000) | ||
committer | stefan <stefan@57a73879-2fb5-44c3-a270-3262357dd7e2> | |
Thu, 12 Mar 2009 18:23:54 +0000 (18:23 +0000) |
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4191 57a73879-2fb5-44c3-a270-3262357dd7e2
setup.py | patch | blob | history |
diff --git a/setup.py b/setup.py
index f1f247beb784d09ea8b88ac6594fb5a0adc91980..317d5dab9876061261b97ae4446ac861bd2e5339 100644 (file)
--- a/setup.py
+++ b/setup.py
# add the templates to the data files lists
from roundup.init import listTemplates
- templates = [t['path'] for t in listTemplates(os.path.join('share','roundup','templates')).values()]
+ templates = [t['path']
+ for t in listTemplates('share/roundup/templates').values()]
for tdir in templates:
for idir in '. detectors extensions html'.split():
data_files.append(include(os.path.join(tdir, idir), '*'))
# add message files
for (_dist_file, _mo_file) in list_message_files():
- data_files.append((os.path.dirname(_mo_file), [os.path.join("build", _mo_file)]))
+ data_files.append((os.path.dirname(_mo_file),
+ [os.path.join("build", _mo_file)]))
# add docs
- data_files.append(include(os.path.join('share', 'doc', 'roundup', 'html'), '*'))
+ data_files.append(include(os.path.join('share/doc/roundup/html'), '*'))
# perform the setup action
from roundup import __version__
author="Richard Jones",
author_email="richard@users.sourceforge.net",
description='Issue-tracking System.',
- long_description="""Roundup is a simple-to-use and -install issue-tracking system
+ long_description=
+ """Roundup is a simple-to-use and -install issue-tracking system
with command-line, web and e-mail interfaces. Highly customisable.""",
url='http://www.roundup-tracker.org',
download_url='http://pypi.python.org/pypi/roundup',