-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (32 loc) · 926 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
25
26
27
28
29
30
31
32
33
from setuptools import setup
setup(
name='curio-http',
version='0.1.0',
description='Asynchronouse HTTP client based on curio.',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Development Status :: 2 - Pre-Alpha',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Topic :: Internet :: WWW/HTTP'
],
author='scribu',
author_email='[email protected]',
url='https://github.com/scribu/curio-http/',
license='Apache 2',
packages=['curio_http'],
install_requires=[
'curio >=0.4',
'h11 >=0.6',
'yarl >=0.7',
],
extras_require={
'test': [
'pytest >=3.0.3',
],
},
)