From cf30adf38d4f29f81ae01e111433354bf4caa4de Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 13 May 2014 23:17:36 +0200 Subject: [PATCH] Remove CRLF in setupdata --- scripts/setupdata.py | 124 +++++++++++++++++++++---------------------- 1 file changed, 62 insertions(+), 62 deletions(-) diff --git a/scripts/setupdata.py b/scripts/setupdata.py index 6b458af6e..e9b0e94eb 100644 --- a/scripts/setupdata.py +++ b/scripts/setupdata.py @@ -1,62 +1,62 @@ -# Copyright 2014 Florian Bruhin (The Compiler) -# -# This file is part of qutebrowser. -# -# qutebrowser is free software: you can redistribute it and/or modify -# it under the terms of the GNU General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# qutebrowser is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU General Public License for more details. -# -# You should have received a copy of the GNU General Public License -# along with qutebrowser. If not, see . - - -"""Data used by setup.py and scripts/freeze.py""" - -import sys -import os -sys.path.insert(0, os.getcwd()) -import qutebrowser - - -def read_file(name): - with open(name, encoding='utf-8') as f: - return f.read() - - -setupdata = { - 'name': 'qutebrowser', - 'version': qutebrowser.__version__, - 'description': ("A keyboard-driven, vim-like browser based on PyQt5 and " - "QtWebKit."), - 'long_description': read_file('README'), - 'url': 'http://www.qutebrowser.org/', - 'author': "Florian Bruhin", - 'author_email': 'me@qutebrowser.org', - 'license': 'GPL', - 'classifiers': [ - 'Development Status :: 3 - Alpha', - 'Environment :: X11 Applications :: Qt', - 'Intended Audience :: End Users/Desktop', - 'License :: OSI Approved :: GNU General Public License v3 or later ' - '(GPLv3+)', - 'Natural Language :: English', - 'Operating System :: Microsoft :: Windows', - 'Operating System :: Microsoft :: Windows :: Windows XP', - 'Operating System :: Microsoft :: Windows :: Windows 7', - 'Operating System :: POSIX :: Linux', - 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.2', - 'Programming Language :: Python :: 3.3', - 'Programming Language :: Python :: 3.4', - 'Topic :: Internet', - 'Topic :: Internet :: WWW/HTTP', - 'Topic :: Internet :: WWW/HTTP :: Browsers', - ], - 'keywords': 'pyqt browser web qt webkit', -} +# Copyright 2014 Florian Bruhin (The Compiler) +# +# This file is part of qutebrowser. +# +# qutebrowser is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# qutebrowser is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with qutebrowser. If not, see . + + +"""Data used by setup.py and scripts/freeze.py""" + +import sys +import os +sys.path.insert(0, os.getcwd()) +import qutebrowser + + +def read_file(name): + with open(name, encoding='utf-8') as f: + return f.read() + + +setupdata = { + 'name': 'qutebrowser', + 'version': qutebrowser.__version__, + 'description': ("A keyboard-driven, vim-like browser based on PyQt5 and " + "QtWebKit."), + 'long_description': read_file('README'), + 'url': 'http://www.qutebrowser.org/', + 'author': "Florian Bruhin", + 'author_email': 'me@qutebrowser.org', + 'license': 'GPL', + 'classifiers': [ + 'Development Status :: 3 - Alpha', + 'Environment :: X11 Applications :: Qt', + 'Intended Audience :: End Users/Desktop', + 'License :: OSI Approved :: GNU General Public License v3 or later ' + '(GPLv3+)', + 'Natural Language :: English', + 'Operating System :: Microsoft :: Windows', + 'Operating System :: Microsoft :: Windows :: Windows XP', + 'Operating System :: Microsoft :: Windows :: Windows 7', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Topic :: Internet', + 'Topic :: Internet :: WWW/HTTP', + 'Topic :: Internet :: WWW/HTTP :: Browsers', + ], + 'keywords': 'pyqt browser web qt webkit', +}