fix spacing

This commit is contained in:
Raphael Deem 2017-03-11 21:46:31 -08:00
parent 01a770cbca
commit 668f6477bb

View File

@ -16,23 +16,23 @@ with codecs.open(os.path.join(os.path.abspath(os.path.dirname(
raise RuntimeError('Unable to determine version.') raise RuntimeError('Unable to determine version.')
setup_kwargs = { setup_kwargs = {
'name': 'sanic', 'name': 'sanic',
'version': version, 'version': version,
'url': 'http://github.com/channelcat/sanic/', 'url': 'http://github.com/channelcat/sanic/',
'license': 'MIT', 'license': 'MIT',
'author': 'Channel Cat', 'author': 'Channel Cat',
'author_email': 'channelcat@gmail.com', 'author_email': 'channelcat@gmail.com',
'description': ( 'description': (
'A microframework based on uvloop, httptools, and learnings of flask'), 'A microframework based on uvloop, httptools, and learnings of flask'),
'packages': ['sanic'], 'packages': ['sanic'],
'platforms': 'any', 'platforms': 'any',
'classifiers': [ 'classifiers': [
'Development Status :: 2 - Pre-Alpha', 'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment', 'Environment :: Web Environment',
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
], ],
} }
try: try: