2016-10-01 19:48:50 -07:00
|
|
|
"""
|
|
|
|
Sanic
|
|
|
|
"""
|
2016-10-25 01:49:43 -07:00
|
|
|
import codecs
|
|
|
|
import os
|
|
|
|
import re
|
2016-10-01 19:48:50 -07:00
|
|
|
from setuptools import setup
|
|
|
|
|
2016-10-25 01:49:43 -07:00
|
|
|
|
|
|
|
with codecs.open(os.path.join(os.path.abspath(os.path.dirname(
|
|
|
|
__file__)), 'sanic', '__init__.py'), 'r', 'latin1') as fp:
|
|
|
|
try:
|
|
|
|
version = re.findall(r"^__version__ = '([^']+)'\r?$",
|
|
|
|
fp.read(), re.M)[0]
|
|
|
|
except IndexError:
|
|
|
|
raise RuntimeError('Unable to determine version.')
|
|
|
|
|
2016-10-01 19:48:50 -07:00
|
|
|
setup(
|
2017-01-30 02:22:12 -08:00
|
|
|
name='sanic',
|
2016-10-25 01:49:43 -07:00
|
|
|
version=version,
|
2016-10-01 19:48:50 -07:00
|
|
|
url='http://github.com/channelcat/sanic/',
|
2016-10-16 06:03:35 +02:00
|
|
|
license='MIT',
|
2016-10-01 19:48:50 -07:00
|
|
|
author='Channel Cat',
|
|
|
|
author_email='channelcat@gmail.com',
|
2016-10-14 03:37:40 -07:00
|
|
|
description='A microframework based on uvloop, httptools, and learnings of flask',
|
2016-10-01 19:48:50 -07:00
|
|
|
packages=['sanic'],
|
|
|
|
platforms='any',
|
|
|
|
install_requires=[
|
2017-02-10 13:14:36 +00:00
|
|
|
'uvloop>=0.5.3;platform_system!="Windows"',
|
2016-10-01 19:48:50 -07:00
|
|
|
'httptools>=0.0.9',
|
|
|
|
'ujson>=1.35',
|
2016-10-24 01:21:06 -07:00
|
|
|
'aiofiles>=0.3.0',
|
2016-10-01 19:48:50 -07:00
|
|
|
],
|
|
|
|
classifiers=[
|
2016-10-16 02:44:09 -07:00
|
|
|
'Development Status :: 2 - Pre-Alpha',
|
2016-10-01 19:48:50 -07:00
|
|
|
'Environment :: Web Environment',
|
2016-10-16 06:03:35 +02:00
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2016-10-01 19:48:50 -07:00
|
|
|
],
|
2016-10-14 19:53:49 -07:00
|
|
|
)
|