]> Repositories - Adafruit_Blinka-hackapet.git/blobdiff - setup.py
Change out of docs
[Adafruit_Blinka-hackapet.git] / setup.py
old mode 100644 (file)
new mode 100755 (executable)
index 26933ef..370f556
--- a/setup.py
+++ b/setup.py
@@ -21,9 +21,8 @@ REQUIRES_PYTHON = '>=3.6.0'
 VERSION = None
 
 # What packages are required for this module to be executed?
-REQUIRED = [
-    # 'requests', 'maya', 'records',
-]
+with open('requirements.txt') as f:
+    requirements = f.read().splitlines()
 
 here = os.path.abspath(os.path.dirname(__file__))
 
@@ -106,7 +105,7 @@ setup(
     # entry_points={
     #     'console_scripts': ['mycli=mymodule:cli'],
     # },
-    install_requires=REQUIRED,
+    install_requires=requirements,
     include_package_data=True,
     license='MIT',
     classifiers=[