X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/blobdiff_plain/b2848d5f040cd82deeb7c6557ceccd1a796523eb..3f98209e9bf415e3abdd389c78a6b7da6e338d4a:/setup.py 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=[