forked from Li-ShenGang/ahttp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (23 loc) · 842 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#/usr/bin/env python3
#-*- coding: utf-8 -*-
from setuptools import setup, find_packages, os
setup(
name='ahttp',
version='1.0.1',
description='Based on aiohttp and asyncio requests',
long_description='The Instructions of ahttp at https://github.com/web-trump/ahttp.git',
install_requires=['aiohttp>=2.0.0', 'cchardet>=2.0.0', ('uvloop' if os.name is not 'nt' else '') ] ,
author='LiShenGang',
author_email='cszy2013@163.com',
license='BSD License',
py_modules= ['ahttp'] ,
platforms=["python 3.5+"],
url='https://github.com/web-trump/ahttp.git',
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: Chinese (Simplified)',
'Programming Language :: Python :: 3.5',
],
)