Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8a0d49e

Browse files
author
Neha Kumari
committedFeb 6, 2019
Make dependancy adal optional
1 parent ed18ea8 commit 8a0d49e

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ ipaddress>=1.0.17;python_version=="2.7" # PSF
99
websocket-client>=0.32.0,!=0.40.0,!=0.41.*,!=0.42.* # LGPLv2+
1010
requests # Apache-2.0
1111
requests-oauthlib # ISC
12-
adal>=1.0.2 # MIT

‎setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@
2727
# prerequisite: setuptools
2828
# http://pypi.python.org/pypi/setuptools
2929

30-
EXTRAS = {}
30+
EXTRAS = {
31+
'adal': ['adal>=1.0.2']
32+
}
3133
REQUIRES = []
3234
with open('requirements.txt') as f:
3335
for line in f:

0 commit comments

Comments
 (0)
Please sign in to comment.