Use spaces instead of tabs for setup.py

a-bit-of-packaging
Sebastian Lohff 4 years ago
parent 864b2161b1
commit 3d46950d6c

@ -3,40 +3,39 @@
from setuptools import setup from setuptools import setup
setup( setup(
name='servefile', name='servefile',
description='Serve files from shell via a small HTTP server', description='Serve files from shell via a small HTTP server',
long_description='Serve files from shell via a small HTTP server. The server redirects all HTTP requests to the file, so only IP and port must be given to another user to access the file. Its main purpose is to quickly send a file to users in your local network, independent of their current setup (OS/software). Beneath that it also supports uploads, SSL, HTTP basic auth and directory listings.', long_description='Serve files from shell via a small HTTP server. The server redirects all HTTP requests to the file, so only IP and port must be given to another user to access the file. Its main purpose is to quickly send a file to users in your local network, independent of their current setup (OS/software). Beneath that it also supports uploads, SSL, HTTP basic auth and directory listings.',
platforms='posix', platforms='posix',
version='0.4.4', version='0.4.4',
license='GPLv3 or later', license='GPLv3 or later',
url='https://seba-geek.de/stuff/servefile/', url='https://seba-geek.de/stuff/servefile/',
author='Sebastian Lohff', author='Sebastian Lohff',
author_email='seba@someserver.de', author_email='seba@someserver.de',
install_requires=['pyopenssl'], install_requires=['pyopenssl'],
tests_require=[ tests_require=[
'pathlib2; python_version<"3"', 'pathlib2; python_version<"3"',
'pytest', 'pytest',
'requests', 'requests',
], ],
scripts=['servefile'], classifiers=[
classifiers=[ 'Development Status :: 5 - Production/Stable',
'Development Status :: 5 - Production/Stable', 'Environment :: Console',
'Environment :: Console', 'Intended Audience :: End Users/Desktop',
'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', 'Natural Language :: English',
'Natural Language :: English', 'Programming Language :: Python',
'Programming Language :: Python', 'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.8', 'Topic :: Communications',
'Topic :: Communications', 'Topic :: Communications :: File Sharing',
'Topic :: Communications :: File Sharing', 'Topic :: Internet',
'Topic :: Internet', 'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers', 'Topic :: Utilities',
'Topic :: Utilities', ],
],
) )

Loading…
Cancel
Save