forked from inyutin/aiohttp_retry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (30 loc) · 931 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='aiohttp_retry',
version='2.5.2',
description='Simple retry client for aiohttp',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords='aiohttp retry client',
author='Dmitry Inyutin',
author_email='[email protected]',
url='https://github.com/inyutin/aiohttp_retry',
license='MIT',
include_package_data=True,
packages=find_packages(exclude=["tests", "tests.*"]),
platforms=['any'],
python_requires='>=3.7',
install_requires=[
'aiohttp',
],
package_data={
"aiohttp_retry": ["py.typed"],
}
)