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