]> 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 7d4228e..370f556
--- a/setup.py
+++ b/setup.py
@@ -12,18 +12,17 @@ from shutil import rmtree
 from setuptools import find_packages, setup, Command
 
 # Package meta-data.
-NAME = 'Adafruit-Micropython-Blinka'
-DESCRIPTION = 'A selection of packages for mirroring the CircuitPython API on hosts running micropython.'
-URL = 'https://github.com/adafruit/Adafruit_Micropython_Blinka'
+NAME = 'Adafruit-Blinka'
+DESCRIPTION = 'CircuitPython APIs for non-CircuitPython versions of Python such as CPython on Linux and MicroPython.'
+URL = 'https://github.com/adafruit/Adafruit_Blinka'
 EMAIL = 'python@adafruit.com'
 AUTHOR = 'Adafruit Industries'
 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__))
 
@@ -75,7 +74,7 @@ class UploadCommand(Command):
         self.status('Pushing git tags…')
         os.system('git tag v{0}'.format(about['__version__']))
         os.system('git push --tags')
-        
+
         sys.exit()
 
 
@@ -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=[