We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8b3979 commit eca4439Copy full SHA for eca4439
setup.py
@@ -41,8 +41,13 @@ def run(cls):
41
"lz4": ["lz4"],
42
"snappy": ["python-snappy"],
43
"zstd": ["python-zstandard"],
44
- # "gssapi": ["gssapi"],
45
- # "gssapi_sspi": ["pywin32"],
+ "gssapi": ["gssapi"],
+ "sspi": ["pywin32 >= 301"],
46
+ "krb5_auto": [
47
+ 'pywin32>=301;platform_system=="Windows"',
48
+ 'gssapi;platform_system=="Linux"',
49
+ ],
50
+
51
},
52
cmdclass={"test": Tox},
53
packages=find_packages(exclude=['test']),
@@ -58,8 +63,6 @@ def run(cls):
58
63
"Intended Audience :: Developers",
59
64
"License :: OSI Approved :: Apache Software License",
60
65
"Programming Language :: Python",
61
- "Programming Language :: Python :: 2",
62
- "Programming Language :: Python :: 2.7",
66
"Programming Language :: Python :: 3",
67
"Programming Language :: Python :: 3.4",
68
"Programming Language :: Python :: 3.5",
0 commit comments