Skip to content

Commit 18366f3

Browse files
committed
Reformat to reduce line-length.
1 parent caf97aa commit 18366f3

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

setup.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,17 +77,19 @@ def main():
7777

7878
# add the templates to the data files lists
7979
from roundup.init import listTemplates
80-
templates = [t['path'] for t in listTemplates(os.path.join('share','roundup','templates')).values()]
80+
templates = [t['path']
81+
for t in listTemplates('share/roundup/templates').values()]
8182
for tdir in templates:
8283
for idir in '. detectors extensions html'.split():
8384
data_files.append(include(os.path.join(tdir, idir), '*'))
8485

8586
# add message files
8687
for (_dist_file, _mo_file) in list_message_files():
87-
data_files.append((os.path.dirname(_mo_file), [os.path.join("build", _mo_file)]))
88+
data_files.append((os.path.dirname(_mo_file),
89+
[os.path.join("build", _mo_file)]))
8890

8991
# add docs
90-
data_files.append(include(os.path.join('share', 'doc', 'roundup', 'html'), '*'))
92+
data_files.append(include(os.path.join('share/doc/roundup/html'), '*'))
9193

9294
# perform the setup action
9395
from roundup import __version__
@@ -97,7 +99,8 @@ def main():
9799
author="Richard Jones",
98100
author_email="[email protected]",
99101
description='Issue-tracking System.',
100-
long_description="""Roundup is a simple-to-use and -install issue-tracking system
102+
long_description=
103+
"""Roundup is a simple-to-use and -install issue-tracking system
101104
with command-line, web and e-mail interfaces. Highly customisable.""",
102105
url='http://www.roundup-tracker.org',
103106
download_url='http://pypi.python.org/pypi/roundup',

0 commit comments

Comments
 (0)