sanic/setup.py

56 lines
1.3 KiB
Python
Raw Normal View History

2016-10-02 03:48:50 +01:00
"""
Sanic
"""
2016-10-25 09:49:43 +01:00
import codecs
import os
import re
2016-10-02 03:48:50 +01:00
from setuptools import setup
2016-10-25 09:49:43 +01: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.')
install_requires = [
'httptools>=0.0.9',
'aiofiles>=0.3.0',
]
ujson = [
'ujson>=1.35',
]
uvloop = [
'uvloop>=0.5.3',
]
2016-10-02 03:48:50 +01:00
setup(
2017-01-30 10:22:12 +00:00
name='sanic',
2016-10-25 09:49:43 +01:00
version=version,
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=install_requires,
extras_require={
"all": install_requires + ujson + uvloop,
"ujson": install_requires + ujson,
"uvloop": install_requires + uvloop,
},
2016-10-02 03:48:50 +01:00
classifiers=[
'Development Status :: 2 - Pre-Alpha',
2016-10-02 03:48:50 +01:00
'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
],
)