2016-10-02 03:48:50 +01:00
|
|
|
"""
|
|
|
|
Sanic
|
|
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='Sanic',
|
2016-10-23 11:43:01 +01:00
|
|
|
version="0.1.5",
|
2016-10-02 03:48:50 +01:00
|
|
|
url='http://github.com/channelcat/sanic/',
|
2016-10-16 05:03:35 +01:00
|
|
|
license='MIT',
|
2016-10-02 03:48:50 +01:00
|
|
|
author='Channel Cat',
|
|
|
|
author_email='channelcat@gmail.com',
|
2016-10-14 11:37:40 +01:00
|
|
|
description='A microframework based on uvloop, httptools, and learnings of flask',
|
2016-10-02 03:48:50 +01:00
|
|
|
packages=['sanic'],
|
|
|
|
platforms='any',
|
|
|
|
install_requires=[
|
2016-10-10 00:02:43 +01:00
|
|
|
'uvloop>=0.5.3',
|
2016-10-02 03:48:50 +01:00
|
|
|
'httptools>=0.0.9',
|
|
|
|
'ujson>=1.35',
|
2016-10-24 09:21:06 +01:00
|
|
|
'aiofiles>=0.3.0',
|
2016-10-02 03:48:50 +01:00
|
|
|
],
|
|
|
|
classifiers=[
|
2016-10-16 10:44:09 +01:00
|
|
|
'Development Status :: 2 - Pre-Alpha',
|
2016-10-02 03:48:50 +01:00
|
|
|
'Environment :: Web Environment',
|
2016-10-16 05:03:35 +01:00
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2016-10-02 03:48:50 +01:00
|
|
|
],
|
2016-10-15 03:53:49 +01:00
|
|
|
)
|