From afeed3cabd1268ac800665d13dd739188ad7571a Mon Sep 17 00:00:00 2001 From: Channel Cat Date: Sat, 1 Oct 2016 19:48:50 -0700 Subject: [PATCH] Added setup for pip install --- setup.py | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..60a68245 --- /dev/null +++ b/setup.py @@ -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', + ], +) \ No newline at end of file