-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 754 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 754 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
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
setup(
name='httpie-kws',
description='KWS plugin for HTTPie.',
python_requires=">=3.7",
long_description=open('README.md').read().strip(),
long_description_content_type='text/markdown',
version='1.1.0',
author='Luo Jiejun',
author_email='ljj@knd.com.cn',
license='Apache 2.0',
url='https://github.com/windtail/httpie-kws',
download_url='https://github.com/windtail/httpie-kws',
py_modules=['httpie_kws'],
zip_safe=False,
entry_points={
'httpie.plugins.auth.v1': [
'httpie_kws_auth = httpie_kws:KwsAuthPlugin'
]
},
install_requires=[
'httpie == 3.2.1',
],
)