forked from fellowapp/asyncio-connection-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (34 loc) · 1.22 KB
/
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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="asyncio-connection-pool",
description="A high-throughput, optionally-burstable pool free of explicit locking",
url="https://github.com/fellowinsights/asyncio-connection-pool",
author="Patrick Gingras <775.pg.12@gmail.com>",
author_email="775.pg.12@gmail.com",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: BSD License",
],
keywords="asyncio",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(
include=["asyncio_connection_pool", "asyncio_connection_pool.*"]
),
package_data={"asyncio_connection_pool": ["py.typed"]},
python_requires=">=3.8",
install_requires=[],
tests_require=["riot"],
extras_require={
"datadog": ["ddtrace", "datadog"],
"aioredis": ["aioredis"],
},
setup_requires=["setuptools_scm"],
use_scm_version=True,
zip_safe=False, # for mypy support
)