-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from kattni/pypi-setup
PyPi Setup.
- Loading branch information
Showing
5 changed files
with
88 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,12 @@ | ||
*.mpy | ||
.idea | ||
__pycache__ | ||
_build | ||
*.pyc | ||
.env | ||
build* | ||
bundles | ||
*.DS_Store | ||
.eggs | ||
dist | ||
**/*.egg-info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,33 @@ | ||
# This is a common .travis.yml for generating library release zip files for | ||
# CircuitPython library releases using circuitpython-build-tools. | ||
# See https://github.com/adafruit/circuitpython-build-tools for detailed setup | ||
# instructions. | ||
|
||
dist: trusty | ||
sudo: false | ||
language: python | ||
python: | ||
- "3.6" | ||
|
||
- '3.6' | ||
cache: | ||
pip: true | ||
|
||
pip: true | ||
deploy: | ||
provider: releases | ||
api_key: $GITHUB_TOKEN | ||
- provider: releases | ||
api_key: "$GITHUB_TOKEN" | ||
file_glob: true | ||
file: $TRAVIS_BUILD_DIR/bundles/* | ||
file: "$TRAVIS_BUILD_DIR/bundles/*" | ||
skip_cleanup: true | ||
overwrite: true | ||
on: | ||
tags: true | ||
|
||
- provider: pypi | ||
user: adafruit-travis | ||
on: | ||
tags: true | ||
password: | ||
secure: f2xxf+LZDpa/1Z4Xdu8gwdSDohfMKp/ViRPZlzlrvsF06eVomWSnkB30gzv7QRpEHOTJV+HuoNnKmZ7tMjX5OUirF15H9T9Amr1zTeehvK8NMMaXQ8oIfAHaYU7X+RNlqbRYAgzx5lTRIe4MCmAPF14ZGQKbUP3RCsZgnrgElnvqqDM5TJG/B1mxElUPBT/VdUhqxkS2s52sCQ5CrGRCX46ET2xgHmv/aLe+dK9mOgI6WGCEQOxZgmhJkiW/uXkTHyZaQwGaSGp13+jxMrKTx7GIEKPiUUFU0GJvZMXdF8iGln3dWtoDZwYaKSs5Y2HjnNnGH5mvK2RtHtCQzfQRzYO6ZowehQCvkEH7VJ7rprWjpG1ifeGS0a54mrAVubAsFfg7t41yUdFvw0fB0+O0fwLiJwXJJ6gfDI7tewRYTi1z/pgQU8CcQiA4q+Ki89HyyrDVB8wUoDnSYNgYPdxIyoyHq8M853C9TRgCQDioBgvIokHyE/VcH8mdByOo08/gyWdilwDC74d0YTcxQSBZQNI7wcXT+AxUe7b9rB0cRqWsCxrSs0Ex6by9cHG6aguvOg9rSCg6Ce2KMNSwuwos0sQNvKjcOoFblGDQTGlTx09MTLH/dhANImTNmlag3BdhL/X1XN2nnrjrvDlZGifD0wHMxKVMHH3IheQLtR5wAdw= | ||
install: | ||
- pip install -r requirements.txt | ||
- pip install circuitpython-build-tools Sphinx sphinx-rtd-theme | ||
- pip install --force-reinstall pylint==1.9.2 | ||
|
||
- pip install -r requirements.txt | ||
- pip install circuitpython-build-tools Sphinx sphinx-rtd-theme | ||
- pip install --force-reinstall pylint==1.9.2 | ||
script: | ||
- pylint adafruit_adxl34x.py | ||
- ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace examples/*.py) | ||
- circuitpython-build-bundles --filename_prefix adafruit-circuitpython-adxl34x --library_location . | ||
- cd docs && sphinx-build -E -W -b html . _build/html | ||
- pylint adafruit_adxl34x.py | ||
- ([[ ! -d "examples" ]] || pylint --disable=missing-docstring,invalid-name,bad-whitespace | ||
examples/*.py) | ||
- circuitpython-build-bundles --filename_prefix adafruit-circuitpython-adxl34x --library_location | ||
. | ||
- cd docs && sphinx-build -E -W -b html . _build/html && cd .. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
Adafruit-Blinka | ||
adafruit-circuitpython-busdevice | ||
adafruit-circuitpython-register |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
"""A setuptools based setup module. | ||
See: | ||
https://packaging.python.org/en/latest/distributing.html | ||
https://github.com/pypa/sampleproject | ||
""" | ||
|
||
# Always prefer setuptools over distutils | ||
from setuptools import setup, find_packages | ||
# To use a consistent encoding | ||
from codecs import open | ||
from os import path | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
# Get the long description from the README file | ||
with open(path.join(here, 'README.rst'), encoding='utf-8') as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
name='adafruit-circuitpython-adxl34x', | ||
|
||
use_scm_version=True, | ||
setup_requires=['setuptools_scm'], | ||
|
||
description='A CircuitPython driver for the ADXL34x family of accelerometers.', | ||
long_description=long_description, | ||
long_description_content_type='text/x-rst', | ||
|
||
# The project's main homepage. | ||
url='https://github.com/adafruit/Adafruit_CircuitPython_ADXL34x', | ||
|
||
# Author details | ||
author='Adafruit Industries', | ||
author_email='[email protected]', | ||
|
||
install_requires=['Adafruit-Blinka', 'adafruit-circuitpython-busdevice'], | ||
|
||
# Choose your license | ||
license='MIT', | ||
|
||
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Libraries', | ||
'Topic :: System :: Hardware', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
], | ||
|
||
# What does your project relate to? | ||
keywords='adafruit hardware accelerometer acceleration spi i2c triple axis' | ||
'micropython circuitpython', | ||
|
||
# You can just specify the packages manually here if your project is | ||
# simple. Or you can use find_packages(). | ||
py_modules=['adafruit_adxl34x'], | ||
) |