]> Repositories - Adafruit_Blinka-hackapet.git/commitdiff
Rename to Adafruit_Blinka and auto-release to pypi as well as GitHub.
authorScott Shawcroft <scott@tannewt.org>
Tue, 26 Jun 2018 21:38:45 +0000 (14:38 -0700)
committerScott Shawcroft <scott@tannewt.org>
Tue, 26 Jun 2018 21:38:45 +0000 (14:38 -0700)
.travis.yml
setup.py

index bf345ef68df1d10490b28ccafe5ede904de67a26..70d0c7076524840a28fe48fdae09eda9683e3320 100644 (file)
@@ -13,14 +13,20 @@ cache:
     pip: true
 
 deploy:
-  provider: releases
-  api_key: $GITHUB_TOKEN
-  file_glob: true
-  file: bundles/*
-  skip_cleanup: true
-  overwrite: true
-  on:
-    tags: true
+  - provider: releases
+    api_key: $GITHUB_TOKEN
+    file_glob: true
+    file: bundles/*
+    skip_cleanup: true
+    overwrite: true
+    on:
+      tags: true
+  - provider: pypi
+    user: adafruit-travis
+    password:
+      secure: UHEnpdeuxFrqSrrSKheh5fB8M5LA7JKmKkAgTy5YHvk/y3sTHHST5cgHg5s5zYSLG3WRrQgnUcf8ISEs6Sb22wtCi81nIhFfML97o/TD+lUSU+lMmbXiLvkMWhkVjGI6P8f5vXc655XYU0W84z9tI4aTKFVKC4pI4qY4XIDe3X7kvQoeRZdTZX35gCWBw9Hshhfc5AENJvRiQqOK/RXiZN4PS+jVFIG0MjSNZ1oO8/Bks//AGHacZuI+5sl3XTbeefiXLmbKsxqEir754GGs04ZgP7OAY4DHgQC2aigdXfnZEcWoWkfU+Hpz4FicFwYqsKfESVwN0Y/Dx4J06YISPEAagUtm0W63qmZ2GSxLmwWBNZ8hDiLaaVEmK9T6q+iw3CPTicC5/35gL+wab2P7thlCA7GHDYg9QfjthcT35Wc0cS+/iQ1w8uOA3aydjXMgiuzydqpViB+r7GmTxHp8qIwAQIYuy6GIY/tqgUUWZ5sjlkmBZTvtbqXYndQk4uvKifsqdbGJxvZh27+BPGSnAe3fIdxAGvGyLH2Ic58NANHrcV3iXMKkhEG3u7pka78uuZJbTnN1KUvk8XgrTv3Xk3gM5ZIn5HCadcXT6i6VMr0ELZCRmR1cng7d03NsXPFFz3LwjWr4MH34ON5HdQuk/X4bhF/IWxSZvxfSZW8C5mE=
+    on:
+      tags: true
 
 install:
   - pip install pylint circuitpython-build-tools Sphinx sphinx-rtd-theme
index 7d4228e672703ebd2ad937ff666f441fa5585e6f..26933ef8ccdc62e82fdeec3cd9b756e6341e8c42 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -12,9 +12,9 @@ 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'
@@ -75,7 +75,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()