-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
38 lines (24 loc) · 908 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
34
35
36
37
38
import setuptools
setuptools.setup(
name='aiohttp-requests',
version='0.2.5',
author='Max Zheng',
author_email='maxzheng.os @t gmail.com',
description='A thin wrapper for aiohttp client with Requests simplicity',
long_description=open('README.rst').read(),
url='https://github.com/maxzheng/aiohttp-requests',
install_requires=open('requirements.txt').read(),
license='MIT',
packages=setuptools.find_packages(),
include_package_data=True,
python_requires='>=3.6',
setup_requires=['setuptools-git', 'wheel'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='aiohttp HTTP client async requests',
)