-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
40 lines (35 loc) · 1.35 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
37
38
39
40
#!/usr/bin/env python
import os
from setuptools import setup
base_dir = os.path.dirname(__file__)
about = {}
with open(os.path.join(base_dir, "bravado_asyncio", "__init__.py")) as f:
exec(f.read(), about)
setup(
name="bravado-asyncio",
version=about["version"],
license="BSD 3-Clause License",
description="asyncio powered HTTP client for bravado",
long_description=open(os.path.join(os.path.dirname(__file__), "README.rst")).read(),
author="Stephan Jaensch",
author_email="[email protected]",
url="https://github.com/sjaensch/bravado-asyncio",
packages=["bravado_asyncio"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.6",
install_requires=["aiohttp>=3.3", "bravado>=11.0.0", "yelp-bytes"],
extras_require={
# as recommended by aiohttp, see http://aiohttp.readthedocs.io/en/stable/#library-installation
"aiohttp_extras": ["aiodns", "cchardet"],
"aiobravado": ["aiobravado"],
},
)