2016-10-02 03:48:50 +01:00
|
|
|
"""
|
|
|
|
Sanic
|
|
|
|
"""
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='Sanic',
|
2016-10-06 09:40:22 +01:00
|
|
|
version="0.0.2",
|
2016-10-02 03:48:50 +01:00
|
|
|
url='http://github.com/channelcat/sanic/',
|
|
|
|
license='BSD',
|
|
|
|
author='Channel Cat',
|
|
|
|
author_email='channelcat@gmail.com',
|
|
|
|
description='A microframework based on uvloop and httptools',
|
|
|
|
#long_description=,
|
|
|
|
packages=['sanic'],
|
|
|
|
#include_package_data=True,
|
|
|
|
#zip_safe=False,
|
|
|
|
platforms='any',
|
|
|
|
install_requires=[
|
|
|
|
'uvloop>=0.5.3',
|
|
|
|
'httptools>=0.0.9',
|
|
|
|
'ujson>=1.35',
|
|
|
|
],
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 1 - Alpha',
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
],
|
|
|
|
)
|