bf6879e46f
Added sanic.static, blueprint.static, documentation, and testing
30 lines
752 B
Python
30 lines
752 B
Python
"""
|
|
Sanic
|
|
"""
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='Sanic',
|
|
version="0.1.5",
|
|
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',
|
|
packages=['sanic'],
|
|
platforms='any',
|
|
install_requires=[
|
|
'uvloop>=0.5.3',
|
|
'httptools>=0.0.9',
|
|
'ujson>=1.35',
|
|
'aiofiles>=0.3.0',
|
|
],
|
|
classifiers=[
|
|
'Development Status :: 2 - Pre-Alpha',
|
|
'Environment :: Web Environment',
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 3.5',
|
|
'Programming Language :: Python :: 3.6',
|
|
],
|
|
)
|