-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
69 lines (60 loc) · 2.1 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from setuptools import setup
version = "6.5.3"
url = "https://github.com/dopstar/requests-ntlm2"
if "a" in version:
dev_status = "3 - Alpha"
elif "b" in version:
dev_status = "4 - Beta"
else:
dev_status = "5 - Production/Stable"
with open("README.md") as fd:
long_description = fd.read()
requirements = [
"requests>=2.0.0",
"ntlm-auth>=1.0.2",
"cryptography>=1.3",
"six>=1.10",
]
setup(
name="requests_ntlm2",
version=version,
packages=["requests_ntlm2"],
install_requires=requirements,
author="Mkhanyisi Madlavana",
author_email="mmadlavana@gmail.com",
url=url,
project_urls={
"Documentation": "https://dopstar.github.io/requests-ntlm2",
"Source": url,
"Tracker": "{}/issues".format(url),
},
download_url="{url}/archive/{version}.tar.gz".format(url=url, version=version),
description=(
"The HTTP NTLM proxy and/or server authentication library."
),
long_description=long_description,
long_description_content_type="text/markdown",
license="ISC",
keywords=["NTLM", "requests", "proxy", "authorization", "NTLM dance"],
package_dir={"requests_ntlm2": "requests_ntlm2"},
package_data={"requests_ntlm2": ["*.md", "LICENSE"]},
classifiers=[
"Development Status :: {0}".format(dev_status),
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"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",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Version Control :: Git",
"Programming Language :: Python :: Implementation :: CPython",
],
)