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
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'
self.status('Pushing git tagsā¦')
os.system('git tag v{0}'.format(about['__version__']))
os.system('git push --tags')
-
+
sys.exit()