[diffoscope] 02/03: setup.py: Reflow formatting.
Chris Lamb
chris at chris-lamb.co.uk
Sun Jan 1 18:41:43 CET 2017
This is an automated email from the git hooks/post-receive script.
lamby pushed a commit to branch master
in repository diffoscope.
commit a64e42ddcb5c358c336696c80a450b21bc21226e
Author: Chris Lamb <lamby at debian.org>
Date: Sun Jan 1 17:14:12 2017 +0000
setup.py: Reflow formatting.
Signed-off-by: Chris Lamb <lamby at debian.org>
---
setup.py | 66 +++++++++++++++++++++++++++++++++-------------------------------
1 file changed, 34 insertions(+), 32 deletions(-)
diff --git a/setup.py b/setup.py
index 7b51cd3..10b8d04 100644
--- a/setup.py
+++ b/setup.py
@@ -6,6 +6,7 @@ import diffoscope
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
+
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
@@ -22,35 +23,36 @@ class PyTest(TestCommand):
errno = pytest.main(self.pytest_args)
sys.exit(errno)
-setup(name='diffoscope',
- version=diffoscope.VERSION,
- description='in-depth comparison of files, archives, and directories',
- long_description=open('README.rst', encoding='utf-8').read(),
- author='Lunar',
- author_email='lunar at debian.org',
- license='GPL-3+',
- url='https://diffoscope.org/',
- packages=find_packages(),
- tests_require=['pytest'],
- cmdclass = {'test': PyTest},
- entry_points={
- 'console_scripts': [
- 'diffoscope=diffoscope.main:main'
- ],
- },
- install_requires=[
- 'python-magic',
- 'libarchive-c',
- ],
- classifiers=[
- 'Development Status :: 3 - Alpha',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
- 'Operating System :: POSIX',
- 'Programming Language :: Python',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- 'Topic :: Utilities',
- ],
- )
+setup(
+ name='diffoscope',
+ version=diffoscope.VERSION,
+ description='in-depth comparison of files, archives, and directories',
+ long_description=open('README.rst', encoding='utf-8').read(),
+ author='Lunar',
+ author_email='lunar at debian.org',
+ license='GPL-3+',
+ url='https://diffoscope.org/',
+ packages=find_packages(),
+ tests_require=['pytest'],
+ cmdclass = {'test': PyTest},
+ entry_points={
+ 'console_scripts': [
+ 'diffoscope=diffoscope.main:main'
+ ],
+ },
+ install_requires=[
+ 'python-magic',
+ 'libarchive-c',
+ ],
+ classifiers=[
+ 'Development Status :: 3 - Alpha',
+ 'Intended Audience :: Developers',
+ 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
+ 'Operating System :: POSIX',
+ 'Programming Language :: Python',
+ 'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Topic :: Utilities',
+ ],
+)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/reproducible/diffoscope.git
More information about the diffoscope
mailing list