forked from pd/httpie-api-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 986 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
35
36
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
setup(
name='httpie-api-auth',
description='ApiAuth plugin for HTTPie.',
long_description=open('README.rst').read().strip(),
version='0.3.0',
author='Kyle Hargraves',
author_email='[email protected]',
license='MIT',
url='https://github.com/pd/httpie-api-auth',
download_url='https://github.com/pd/httpie-api-auth',
py_modules=['httpie_api_auth'],
zip_safe=False,
entry_points={
'httpie.plugins.auth.v1': [
'httpie_api_auth = httpie_api_auth:ApiAuthPlugin'
]
},
install_requires=[
'httpie>=0.7.0'
],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Environment :: Plugins',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
],
)