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
|
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup
setup(
name="httpx_ntlm",
version="1.4.0",
packages=["httpx_ntlm"],
install_requires=[
"httpx>=0.24",
"pyspnego>=0.3",
],
provides=["httpx_ntlm"],
author="Ludovic VAUGEOIS",
author_email="ulodciv@gmail.com",
url="https://github.com/ulodciv/httpx-ntlm",
description="This package allows for HTTP NTLM authentication using the HTTPX library.",
long_description=open('README.rst').read(),
long_description_content_type='text/x-rst',
license="ISC",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: ISC License (ISCL)",
],
)
|