use space indetion in setup.py

This commit is contained in:
Steffen Vogel 2019-04-25 21:18:48 +02:00
parent 8263d4659a
commit 06dfe7dc94
1 changed files with 35 additions and 35 deletions

View File

@ -16,39 +16,39 @@ readme = read_file(os.path.join(here, 'README.rst'))
setup(name='transwhat', setup(name='transwhat',
version='0.2.2', version='0.2.2',
description='A gateway between the XMPP and the WhatsApp IM networks', description='A gateway between the XMPP and the WhatsApp IM networks',
long_description=readme, long_description=readme,
keywords='whatsapp xmpp im gateway transport yowsup', keywords='whatsapp xmpp im gateway transport yowsup',
url='https://github.com/stv0g/transwhat', url='https://github.com/stv0g/transwhat',
author='Steffen Vogel', author='Steffen Vogel',
author_email='stv0g@0l.de', author_email='stv0g@0l.de',
python_requires='>=3.5', python_requires='>=3.5',
classifiers=[ classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',
'Environment :: Plugins', 'Environment :: Plugins',
'Operating System :: POSIX', 'Operating System :: POSIX',
'Topic :: Communications :: Chat' 'Topic :: Communications :: Chat'
], ],
license='GPL-3+', license='GPL-3+',
packages=[ packages=[
'transWhat', 'transWhat',
'Spectrum2' 'Spectrum2'
], ],
scripts=[ scripts=[
'transWhat/transwhat.py' 'transWhat/transwhat.py'
], ],
install_requires=[ install_requires=[
'protobuf', 'protobuf',
'yowsup', 'yowsup',
'e4u', 'e4u',
'Pillow', 'Pillow',
'python-dateutil' 'python-dateutil'
], ],
entry_points={ entry_points={
'console_scripts': ['transwhat=transWhat.transwhat:main'], 'console_scripts': ['transwhat=transWhat.transwhat:main'],
}, },
zip_safe=False, zip_safe=False,
include_package_data=True include_package_data=True
) )