-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
43 lines (41 loc) · 1.24 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
41
42
43
from setuptools import setup
try:
import multiprocessing
except ImportError:
pass
setup(
name='httpie-ntlm',
description='NTLM auth plugin for HTTPie.',
long_description=open('README.rst').read().strip(),
version='1.0.2',
author='Jakub Roztocil',
author_email='[email protected]',
license='BSD',
url='https://github.com/jkbr/httpie-ntlm',
download_url='https://github.com/jkbr/httpie-ntlm',
py_modules=['httpie_ntlm'],
zip_safe=False,
entry_points={
'httpie.plugins.auth.v1': [
'httpie_ntlm = httpie_ntlm:NTLMAuthPlugin'
]
},
install_requires=[
'httpie>=0.7.0',
'requests_ntlm'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Environment :: Plugins',
'License :: OSI Approved :: BSD License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Utilities'
],
)