From: Scott Shawcroft Date: Tue, 26 Jun 2018 21:38:45 +0000 (-0700) Subject: Rename to Adafruit_Blinka and auto-release to pypi as well as GitHub. X-Git-Tag: 0.1.0~2^2 X-Git-Url: https://git.ayoreis.com/Adafruit_Blinka-hackapet.git/commitdiff_plain/b2848d5f040cd82deeb7c6557ceccd1a796523eb?hp=-c Rename to Adafruit_Blinka and auto-release to pypi as well as GitHub. --- b2848d5f040cd82deeb7c6557ceccd1a796523eb diff --git a/.travis.yml b/.travis.yml index bf345ef..70d0c70 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/setup.py b/setup.py index 7d4228e..26933ef 100644 --- 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()