Merge pull request #668 from iamneha/adal

Fix: Make dependancy adal optional
This commit is contained in:
Haowei Cai (Roy) 2019-02-07 14:29:52 -08:00 committed by GitHub
commit 2c02595fa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -9,4 +9,3 @@ ipaddress>=1.0.17;python_version=="2.7" # PSF
websocket-client>=0.32.0,!=0.40.0,!=0.41.*,!=0.42.* # LGPLv2+
requests # Apache-2.0
requests-oauthlib # ISC
adal>=1.0.2 # MIT

View File

@ -27,7 +27,9 @@ DEVELOPMENT_STATUS = "4 - Beta"
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
EXTRAS = {}
EXTRAS = {
'adal': ['adal>=1.0.2']
}
REQUIRES = []
with open('requirements.txt') as f:
for line in f: