windows setup

This commit is contained in:
Raphael Deem 2017-03-11 19:09:01 -08:00
parent 23a1174aa2
commit 01a770cbca
2 changed files with 47 additions and 30 deletions

View File

@ -1,6 +1,9 @@
from mimetypes import guess_type from mimetypes import guess_type
from os import path from os import path
from ujson import dumps as json_dumps try:
from ujson import dumps as json_dumps
except:
from json import dumps as json_dumps
from aiofiles import open as open_async from aiofiles import open as open_async

View File

@ -15,33 +15,47 @@ with codecs.open(os.path.join(os.path.abspath(os.path.dirname(
except IndexError: except IndexError:
raise RuntimeError('Unable to determine version.') raise RuntimeError('Unable to determine version.')
install_requires = [ setup_kwargs = {
'httptools>=0.0.9', 'name': 'sanic',
'ujson>=1.35', 'version': version,
'aiofiles>=0.3.0', 'url': 'http://github.com/channelcat/sanic/',
'websockets>=3.2', 'license': 'MIT',
] 'author': 'Channel Cat',
'author_email': 'channelcat@gmail.com',
'description': (
'A microframework based on uvloop, httptools, and learnings of flask'),
'packages': ['sanic'],
'platforms': 'any',
'classifiers': [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
}
if os.name != 'nt': try:
install_requires.append('uvloop>=0.5.3') normal_requirements = [
'httptools>=0.0.9',
setup( 'uvloop>=0.5.3',
name='sanic', 'ujson>=1.35',
version=version, 'aiofiles>=0.3.0',
url='http://github.com/channelcat/sanic/', 'websockets>=3.2',
license='MIT', ]
author='Channel Cat', setup_kwargs['install_requires'] = normal_requirements
author_email='channelcat@gmail.com', setup(**setup_kwargs)
description=( except DistutilsPlatformError as exception:
'A microframework based on uvloop, httptools, and learnings of flask'), windows_requirements = [
packages=['sanic'], 'httptools>=0.0.9',
platforms='any', 'aiofiles>=0.3.0',
install_requires=install_requires, 'websockets>=3.2',
classifiers=[ ]
'Development Status :: 2 - Pre-Alpha', setup_kwargs['install_requires'] = windows_requirements
'Environment :: Web Environment', setup(**setup_kwargs)
'License :: OSI Approved :: MIT License', # No exceptions occcured
'Programming Language :: Python :: 3.5', print(u"\n\n\U0001F680 "
'Programming Language :: Python :: 3.6', "Sanic version {} installation suceeded.\n".format(version))
], else:
) print(u"\n\n\U0001F680 "
"Sanic version {} installation suceeded.\n".format(version))