Added setup for pip install

This commit is contained in:
Channel Cat 2016-10-01 19:48:50 -07:00
parent acb67ea66c
commit afeed3cabd

28
setup.py Normal file
View File

@ -0,0 +1,28 @@
"""
Sanic
"""
from setuptools import setup
setup(
name='Sanic',
version="0.0.1",
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',
],
)