PyPi Setup.

This commit is contained in:
Kattni Rembor 2018-10-25 13:21:33 -04:00
parent ace71a223b
commit 49345917f6
5 changed files with 88 additions and 23 deletions

6
.gitignore vendored
View file

@ -1,6 +1,12 @@
*.mpy
.idea
__pycache__
_build
*.pyc
.env
build*
bundles
*.DS_Store
.eggs
dist
**/*.egg-info

View file

@ -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 ..

View file

@ -20,7 +20,7 @@ extensions = [
# Uncomment the below if you use native CircuitPython modules such as
# digitalio, micropython and busio. List the modules you use. Without it, the
# autodoc module docs will fail to generate with a warning.
autodoc_mock_imports = ["adafruit_bus_device", "digitalio", "busio", "micropython"]
# autodoc_mock_imports = ["adafruit_bus_device", "digitalio", "busio", "micropython"]
intersphinx_mapping = {'python': ('https://docs.python.org/3.4', None),'BusDevice': ('https://circuitpython.readthedocs.io/projects/busdevice/en/latest/', None),'Register': ('https://circuitpython.readthedocs.io/projects/register/en/latest/', None),'CircuitPython': ('https://circuitpython.readthedocs.io/en/latest/', None)}

View file

@ -1,3 +1,2 @@
Adafruit-Blinka
adafruit-circuitpython-busdevice
adafruit-circuitpython-register

61
setup.py Normal file
View file

@ -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='circuitpython@adafruit.com',
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'],
)