From 0e0d0985d04a4ccb6f8e8862373eaffe6d1e289d Mon Sep 17 00:00:00 2001 From: Jon Bernard Date: Thu, 24 Jul 2014 16:22:11 -0400 Subject: Various pep8 fixes and cleanups Re #36 --- setup.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 6282b70..4e841c7 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- from setuptools import setup from dotfiles import __version__ @@ -10,9 +9,9 @@ setup( author_email='jbernard@tuxion.com', description='Easily manage your dotfiles', url='https://github.com/jbernard/dotfiles', - long_description=open('README.rst').read() + '\n\n' + - open('LICENSE.rst').read() + '\n\n' + - open('HISTORY.rst').read(), + long_description=(open('README.rst').read() + '\n\n' + + open('LICENSE.rst').read() + '\n\n' + + open('HISTORY.rst').read()), license='ISC', packages=['dotfiles'], entry_points = ''' -- cgit v1.2.3