X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/blobdiff_plain/0dc6a54c8df0bcb6016fdf38d3ce8952e88b9788..99af72660405eb234705feb84a24dbcd6104cf64:/setup.py?ds=inline diff --git a/setup.py b/setup.py old mode 100644 new mode 100755 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=[