diff --git a/setup.py b/setup.py index 252cc81d5..4fc90324d 100644 --- a/setup.py +++ b/setup.py @@ -27,17 +27,8 @@ DEVELOPMENT_STATUS = "3 - Alpha" # prerequisite: setuptools # http://pypi.python.org/pypi/setuptools -REQUIRES = [ - "certifi", - "ipaddress", - "oauth2client", - "setuptools", - "six", - "urllib3!=1.21", - "python-dateutil", - "pyyaml", - "websocket-client", -] +with open('requirements.txt') as f: + REQUIRES = f.readlines() setup( name=PACKAGE_NAME,