sanic/setup.py

29 lines
721 B
Python
Raw Normal View History

2016-10-02 03:48:50 +01:00
"""
Sanic
"""
from setuptools import setup
setup(
name='Sanic',
2016-10-14 12:51:08 +01:00
version="0.1.0",
2016-10-02 03:48:50 +01:00
url='http://github.com/channelcat/sanic/',
license='MIT',
2016-10-02 03:48:50 +01:00
author='Channel Cat',
author_email='channelcat@gmail.com',
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=[
'uvloop>=0.5.3',
2016-10-02 03:48:50 +01:00
'httptools>=0.0.9',
'ujson>=1.35',
],
classifiers=[
'Development Status :: 1 - Alpha',
'Environment :: Web Environment',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
2016-10-02 03:48:50 +01:00
],
)