commit
af398fc4c4
|
@ -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
|
||||||
|
|
||||||
|
|
58
setup.py
58
setup.py
|
@ -15,33 +15,45 @@ 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',
|
||||||
if os.name != 'nt':
|
'description': (
|
||||||
install_requires.append('uvloop>=0.5.3')
|
|
||||||
|
|
||||||
setup(
|
|
||||||
name='sanic',
|
|
||||||
version=version,
|
|
||||||
url='http://github.com/channelcat/sanic/',
|
|
||||||
license='MIT',
|
|
||||||
author='Channel Cat',
|
|
||||||
author_email='channelcat@gmail.com',
|
|
||||||
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',
|
||||||
install_requires=install_requires,
|
'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:
|
||||||
|
normal_requirements = [
|
||||||
|
'httptools>=0.0.9',
|
||||||
|
'uvloop>=0.5.3',
|
||||||
|
'ujson>=1.35',
|
||||||
|
'aiofiles>=0.3.0',
|
||||||
|
'websockets>=3.2',
|
||||||
|
]
|
||||||
|
setup_kwargs['install_requires'] = normal_requirements
|
||||||
|
setup(**setup_kwargs)
|
||||||
|
except DistutilsPlatformError as exception:
|
||||||
|
windows_requirements = [
|
||||||
|
'httptools>=0.0.9',
|
||||||
|
'aiofiles>=0.3.0',
|
||||||
|
'websockets>=3.2',
|
||||||
|
]
|
||||||
|
setup_kwargs['install_requires'] = windows_requirements
|
||||||
|
setup(**setup_kwargs)
|
||||||
|
|
||||||
|
# Installation was successful
|
||||||
|
print(u"\n\n\U0001F680 "
|
||||||
|
"Sanic version {} installation suceeded.\n".format(version))
|
||||||
|
|
Loading…
Reference in New Issue
Block a user