summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2020-05-31 17:00:17 +0200
committermathieui <mathieui@mathieui.net>2020-05-31 17:00:17 +0200
commit1ce874b02bc9c990fbf9c2e5eb29c02884390de8 (patch)
treea4d843dd27d47609952683c2a99fa35e09fef089
parent333d260d50f212ea27b1ccbdeda8d88549683df6 (diff)
downloadpoezio-1ce874b02bc9c990fbf9c2e5eb29c02884390de8.tar.gz
poezio-1ce874b02bc9c990fbf9c2e5eb29c02884390de8.tar.bz2
poezio-1ce874b02bc9c990fbf9c2e5eb29c02884390de8.tar.xz
poezio-1ce874b02bc9c990fbf9c2e5eb29c02884390de8.zip
Fix indent of setup()
-rwxr-xr-xsetup.py94
1 files changed, 48 insertions, 46 deletions
diff --git a/setup.py b/setup.py
index f54bd8d5..6e07420f 100755
--- a/setup.py
+++ b/setup.py
@@ -88,52 +88,54 @@ else:
with open('README.rst', encoding='utf-8') as readme_fd:
LONG_DESCRIPTION = readme_fd.read()
-setup(name="poezio",
- version="0.14" + version,
- description="A console XMPP client",
- long_description=LONG_DESCRIPTION,
- ext_modules=[module_poopt],
- url='https://poez.io/',
- license='zlib',
- download_url='https://dev.louiz.org/projects/poezio/files',
-
- author='Florent Le Coz',
- author_email='louiz@louiz.org',
-
- maintainer='Mathieu Pasquet',
- maintainer_email='mathieui@mathieui.net',
-
- classifiers=['Development Status :: 5 - Production/Stable',
- 'Topic :: Communications :: Chat',
- 'Topic :: Internet :: XMPP',
- 'Environment :: Console :: Curses',
- 'Intended Audience :: End Users/Desktop',
- 'License :: OSI Approved :: zlib/libpng License',
- 'Natural Language :: English',
- 'Operating System :: Unix',
- 'Programming Language :: Python :: 3.8',
- 'Programming Language :: Python :: 3.7',
- 'Programming Language :: Python :: 3 :: Only'],
- keywords=['jabber', 'xmpp', 'client', 'chat', 'im', 'console'],
- packages=['poezio', 'poezio.core', 'poezio.tabs', 'poezio.windows',
- 'poezio.ui', 'poezio_plugins', 'poezio_themes'],
- package_dir={'poezio': 'poezio',
- 'poezio_plugins': 'plugins',
- 'poezio_themes': 'data/themes'},
- package_data={'poezio': ['default_config.cfg']},
- scripts=['scripts/poezio_logs'],
- entry_points={'console_scripts': ['poezio = poezio.__main__:run']},
- data_files=([('share/man/man1/', ['data/poezio.1',
- 'data/poezio_logs.1']),
- ('share/poezio/', ['README.rst', 'COPYING', 'CHANGELOG']),
- ('share/applications/', ['data/io.poez.Poezio.desktop']),
- ('share/metainfo/', ['data/io.poez.Poezio.appdata.xml'])]
- + find_doc('share/doc/poezio/source', 'source')
- + find_doc('share/doc/poezio/html', 'build/html')),
- install_requires=['slixmpp>=1.5.2', 'aiodns', 'pyasn1_modules', 'pyasn1'],
- extras_require={'OTR plugin': 'python-potr>=1.0',
- 'Screen autoaway plugin': 'pyinotify==0.9.4',
- 'Avoiding cython': 'cffi'})
+setup(
+ name="poezio",
+ version="0.14" + version,
+ description="A console XMPP client",
+ long_description=LONG_DESCRIPTION,
+ ext_modules=[module_poopt],
+ url='https://poez.io/',
+ license='zlib',
+ download_url='https://dev.louiz.org/projects/poezio/files',
+
+ author='Florent Le Coz',
+ author_email='louiz@louiz.org',
+
+ maintainer='Mathieu Pasquet',
+ maintainer_email='mathieui@mathieui.net',
+
+ classifiers=['Development Status :: 5 - Production/Stable',
+ 'Topic :: Communications :: Chat',
+ 'Topic :: Internet :: XMPP',
+ 'Environment :: Console :: Curses',
+ 'Intended Audience :: End Users/Desktop',
+ 'License :: OSI Approved :: zlib/libpng License',
+ 'Natural Language :: English',
+ 'Operating System :: Unix',
+ 'Programming Language :: Python :: 3.8',
+ 'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3 :: Only'],
+ keywords=['jabber', 'xmpp', 'client', 'chat', 'im', 'console'],
+ packages=['poezio', 'poezio.core', 'poezio.tabs', 'poezio.windows',
+ 'poezio.ui', 'poezio_plugins', 'poezio_themes'],
+ package_dir={'poezio': 'poezio',
+ 'poezio_plugins': 'plugins',
+ 'poezio_themes': 'data/themes'},
+ package_data={'poezio': ['default_config.cfg']},
+ scripts=['scripts/poezio_logs'],
+ entry_points={'console_scripts': ['poezio = poezio.__main__:run']},
+ data_files=([('share/man/man1/', ['data/poezio.1',
+ 'data/poezio_logs.1']),
+ ('share/poezio/', ['README.rst', 'COPYING', 'CHANGELOG']),
+ ('share/applications/', ['data/io.poez.Poezio.desktop']),
+ ('share/metainfo/', ['data/io.poez.Poezio.appdata.xml'])]
+ + find_doc('share/doc/poezio/source', 'source')
+ + find_doc('share/doc/poezio/html', 'build/html')),
+ install_requires=['slixmpp>=1.5.2', 'aiodns', 'pyasn1_modules', 'pyasn1'],
+ extras_require={'OTR plugin': 'python-potr>=1.0',
+ 'Screen autoaway plugin': 'pyinotify==0.9.4',
+ 'Avoiding cython': 'cffi'}
+)
# Remove the link afterwards
if (os.path.exists(os.path.join(current_dir, 'poezio', 'default_config.cfg')) and