Skip to content

Commit

Permalink
Better extras_requires handling.
Browse files Browse the repository at this point in the history
  • Loading branch information
manuco committed Jul 28, 2021
1 parent f8b3979 commit eca4439
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,13 @@ def run(cls):
"lz4": ["lz4"],
"snappy": ["python-snappy"],
"zstd": ["python-zstandard"],
# "gssapi": ["gssapi"],
# "gssapi_sspi": ["pywin32"],
"gssapi": ["gssapi"],
"sspi": ["pywin32 >= 301"],
"krb5_auto": [
'pywin32>=301;platform_system=="Windows"',
'gssapi;platform_system=="Linux"',
],

},
cmdclass={"test": Tox},
packages=find_packages(exclude=['test']),
Expand All @@ -58,8 +63,6 @@ def run(cls):
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
Expand Down

0 comments on commit eca4439

Please sign in to comment.