This repository was archived by the owner on Jan 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 195
/
Copy pathsetup.cfg
59 lines (52 loc) · 1.65 KB
/
setup.cfg
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[metadata]
name = hyper
version = attr: setup.__version__
author = Cory Benfield
author_email = [email protected]
license = MIT License
description = HTTP/2 Client for Python
long_description = file: README.rst, HISTORY.rst
url = http://hyper.rtfd.org
classifiers =
Development Status :: 3 - Alpha
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: Implementation :: CPython
[options]
packages =
hyper
hyper.http20
hyper.common
hyper.http11
install_requires =
h2>=2.4,<3.0,!=2.5.0
hyperframe>=3.2,<4.0
rfc3986>=1.1.0,<2.0
brotlipy>=0.7.0
pyOpenSSL>=0.15; python_full_version < "2.7.9" # Fallback to good SSL on bad Python versions.
service_identity>=14.0.0; python_full_version < "2.7.9"
cryptography<1.0; platform_python_implementation == "pypy" and python_full_version < "2.7.9" # PyPy with bad SSL modules will likely also need the cryptography module at lower than 1.0, because it doesn't support CFFI v1.0 yet.
enum34>=1.0.4, <2; python_version == "2.7" or python_version == "3.3"
include_package_data = True
tests_require = pytest; requests; mock
[options.entry_points]
console_scripts = hyper = hyper.cli:main
[options.extras_require]
fast = pycohttpparser
[options.package_data]
"" =
LICENSE
README.rst
CONTRIBUTORS.rst
HISTORY.rst
NOTICES
[wheel]
universal = 1
[flake8]
max-complexity = 15