-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 900 Bytes
/
setup.py
File metadata and controls
40 lines (38 loc) · 900 Bytes
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
39
40
from setuptools import find_packages, setup
setup(
name="pyhttpbenchmark",
version="0.1",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
package_data={
'src': [
'pyhttpbenchmark/py.typed',
]
},
install_requires=[
"aiohttp[speedups]==3.*",
"httpx[http2]==0.*",
"requests==2.*",
"uvloop==0.*",
"trio==0.*",
"curio==1.*",
"click==7.*",
"trustme==0.6.*",
"uvicorn==0.*",
"starlette==0.*",
"click==7.*",
"snakeviz==2.*",
"tqdm==4.*",
"dataclasses==0.*; python_version<'3.7'",
"Jinja2==3.*",
"irl==0.2",
],
extras_require = {
'graph': ["matplotlib"]
},
entry_points="""
[console_scripts]
pyhttpbenchmark=pyhttpbenchmark.cli:cli
""",
)