2016-10-01 19:48:50 -07:00
|
|
|
"""
|
|
|
|
Sanic
|
|
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='Sanic',
|
2016-10-14 04:51:08 -07:00
|
|
|
version="0.1.0",
|
2016-10-01 19:48:50 -07:00
|
|
|
url='http://github.com/channelcat/sanic/',
|
|
|
|
license='BSD',
|
|
|
|
author='Channel Cat',
|
|
|
|
author_email='channelcat@gmail.com',
|
2016-10-14 03:37:40 -07:00
|
|
|
description='A microframework based on uvloop, httptools, and learnings of flask',
|
2016-10-01 19:48:50 -07:00
|
|
|
packages=['sanic'],
|
|
|
|
platforms='any',
|
|
|
|
install_requires=[
|
2016-10-09 16:02:43 -07:00
|
|
|
'uvloop>=0.5.3',
|
2016-10-01 19:48:50 -07:00
|
|
|
'httptools>=0.0.9',
|
|
|
|
'ujson>=1.35',
|
|
|
|
],
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 1 - Alpha',
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
],
|
2016-10-14 19:53:49 -07:00
|
|
|
)
|