-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
34 lines (32 loc) · 991 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 setup
setup(
name='httpie-http2',
description='HTTP/2 plugin for HTTPie.',
long_description=open('README.rst').read().strip(),
version='0.0.1',
author='Jakub Roztocil',
author_email='[email protected]',
license='BSD',
url='https://github.com/jakubroztocil/httpie-http2',
download_url='https://github.com/jakubroztocil/httpie-http2',
py_modules=['httpie_http2'],
zip_safe=False,
entry_points={
'httpie.plugins.transport.v1': [
'httpie_http2 = httpie_http2:HTTP2TransportPlugin'
]
},
install_requires=[
'httpie>0.9.0',
'hyper'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Environment :: Plugins',
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
],
)